Any gui interface for java db (derby ) such as oracle give sqldeveloper

hi master
sir any gui interface for java db (derby ) such as oracle give sqldeveloper that create table and view only mouse clicking
how i get derby gui interface
thank'
aamir

try db visualizer
http://www.minq.se/products/dbvis/

Similar Messages

  • Does anyone know of any Sun Classes for Java Cryptographic Extension -JCE ?

    Hello - anyone know of any Sun Classes for Java Cryptographic Extension? If so do you have the Sun class code/s?
    Edited by: Mister_Schoenfelder on Apr 17, 2009 11:31 AM

    Maybe this can be helpful?
    com.someone.DESEncrypter
    ======================
    package com.someone;
    import java.io.IOException;
    import java.io.UnsupportedEncodingException;
    import java.security.spec.AlgorithmParameterSpec;
    import java.security.spec.KeySpec;
    import javax.crypto.Cipher;
    import javax.crypto.IllegalBlockSizeException;
    import javax.crypto.KeyGenerator;
    import javax.crypto.SecretKey;
    import javax.crypto.SecretKeyFactory;
    import javax.crypto.spec.PBEKeySpec;
    import javax.crypto.spec.PBEParameterSpec;
    public class DESEncrypter {
        Cipher ecipher;
        Cipher dcipher;
        // 8-byte Salt
        byte[] salt = {
            (byte)0xA9, (byte)0x9B, (byte)0xC8, (byte)0x32,
            (byte)0x56, (byte)0x35, (byte)0xE3, (byte)0x03
        // Iteration count
        int iterationCount = 19;
        public DESEncrypter(String passPhrase) {
            try {
                // Create the key
                KeySpec keySpec = new PBEKeySpec(passPhrase.toCharArray(), salt, iterationCount);
                SecretKey key = SecretKeyFactory.getInstance(
                    "PBEWithMD5AndDES").generateSecret(keySpec);
                ecipher = Cipher.getInstance(key.getAlgorithm());
                dcipher = Cipher.getInstance(key.getAlgorithm());
                // Prepare the parameter to the ciphers
                AlgorithmParameterSpec paramSpec = new PBEParameterSpec(salt, iterationCount);
                // Create the ciphers
                ecipher.init(Cipher.ENCRYPT_MODE, key, paramSpec);
                dcipher.init(Cipher.DECRYPT_MODE, key, paramSpec);
            } catch (java.security.InvalidAlgorithmParameterException e) {
                 e.printStackTrace();
            } catch (java.security.spec.InvalidKeySpecException e) {
                 e.printStackTrace();
            } catch (javax.crypto.NoSuchPaddingException e) {
                 e.printStackTrace();
            } catch (java.security.NoSuchAlgorithmException e) {
                 e.printStackTrace();
            } catch (java.security.InvalidKeyException e) {
                 e.printStackTrace();
        public DESEncrypter(SecretKey key) {
            try {
                ecipher = Cipher.getInstance("DES");
                dcipher = Cipher.getInstance("DES");
                ecipher.init(Cipher.ENCRYPT_MODE, key);
                dcipher.init(Cipher.DECRYPT_MODE, key);
            } catch (javax.crypto.NoSuchPaddingException e) {
                 e.printStackTrace();
            } catch (java.security.NoSuchAlgorithmException e) {
                 e.printStackTrace();
            } catch (java.security.InvalidKeyException e) {
                 e.printStackTrace();
        public String encrypt(byte[] data) {
             return encrypt(new sun.misc.BASE64Encoder().encode(data), false);
        public byte[] decryptData(String s) throws IOException {
             String str = decrypt(s, false);
             return new sun.misc.BASE64Decoder().decodeBuffer(str);
        public String encrypt(String str, boolean useUTF8) {
            try {
                // Encode the string into bytes using utf-8
                byte[] utf8 = useUTF8 ? str.getBytes("UTF8") : str.getBytes();
                // Encrypt
                byte[] enc = ecipher.doFinal(utf8);
                // Encode bytes to base64 to get a string
                return new sun.misc.BASE64Encoder().encode(enc);
            } catch (javax.crypto.BadPaddingException e) {
                 e.printStackTrace();
            } catch (IllegalBlockSizeException e) {
                 e.printStackTrace();
            } catch (UnsupportedEncodingException e) {
                 e.printStackTrace();
            } catch (java.io.IOException e) {
                 e.printStackTrace();
            return null;
        public String decrypt(String str, boolean useUTF8) {
            try {
                // Decode base64 to get bytes
                byte[] dec = new sun.misc.BASE64Decoder().decodeBuffer(str);
                // Decrypt
                byte[] utf8 = dcipher.doFinal(dec);
                // Decode using utf-8
                return useUTF8 ? new String(utf8, "UTF8") : new String(utf8);
            } catch (javax.crypto.BadPaddingException e) {
                 e.printStackTrace();
            } catch (IllegalBlockSizeException e) {
                 e.printStackTrace();
            } catch (UnsupportedEncodingException e) {
                 e.printStackTrace();
            } catch (java.io.IOException e) {
                 e.printStackTrace();
            return null;
         // Here is an example that uses the class
         public static void main(String[] args) {
             try {
                 // Generate a temporary key. In practice, you would save this key.
                 // See also e464 Encrypting with DES Using a Pass Phrase.
                 SecretKey key = KeyGenerator.getInstance("DES").generateKey();
                 // Create encrypter/decrypter class
                 DESEncrypter encrypter = new DESEncrypter(key);
                 // Encrypt
                 String encrypted = encrypter.encrypt("Don't tell anybody!", true);
                 // Decrypt
                 String decrypted = encrypter.decrypt(encrypted, true);
             } catch (Exception e) {
                  e.printStackTrace();
              try {
                  // Create encrypter/decrypter class
                  DESEncrypter encrypter = new DESEncrypter("My Pass Phrase!");
                  // Encrypt
                  String encrypted = encrypter.encrypt("Don't tell anybody!", true);
                  // Decrypt
                  String decrypted = encrypter.decrypt(encrypted, true);
              } catch (Exception e) {
                   e.printStackTrace();
    }

  • GUI toolkit for Java ME/ CDC devices

    I have written in my blog about:
    GUI toolkit for Java ME/ CDC devices: http://ovenordstrom.blogspot.com/2006/08/gui-toolkit-for-java-me-cdc-devices.html
    and
    ERCP - Embedded Rich Client Platform, soon with the first release of eRCP:
    http://ovenordstrom.blogspot.com/2006/08/ercp-embedded-rich-client-platform.html
    That perhaps is interesting for Java ME/PP developers
    Regards,
    Ove

    Hi there!
    I guess you should take a look at GTK+/Gnome development today.
    Cheers,
    Inge-Lars

  • Upgrading Oracle XML Parser for Java v9.0.4 with Oracle Applications 11i

    Guys, I applied ATG.PF.H.RUP4. In postinstall steps it is mentioned,Upgrading Oracle XML Parser for Java v9.0.4 with Oracle Applications 11i(doc-271148.1)
    which says after applying patch 4038964 do the following--
    AUTOCONFIG ENABLED APPLICATIONS ENVIRONMENT
    If the Oracle E-Business Suite configuration files are maintained using the AutoConfig infrastructure, proceed with the following:
    1. Run the AutoConfig utility.
    2. Go to [JAVA_TOP].
    3. Run the unzip -l appsborg2.zip | grep 9.0.4 command. If there is a file named as .xdkjava_version_9.0.4.0.0_production, which indicates that XML Parser for Java v9.0.4 is installed correctly as part of appsborg2.zip. Otherwise, run ADAdmin to regenerate the appsborg2.zip file.
    4. Restart the application tier server processes such that the new version of Oracle XML Parser for Java will take effect.
    but actually the patch is already applied- 4038964. How do i verify if i need to do these steps or not.
    The xmlparserv2-904.zip file is already there in wrapper.classpath. of jserv.properties, forms.properties. So i think i dont need to do these steps.

    unzip -l appsborg2.zip | grep 9.0.4
    0 04-18-03 20:10 .xdkjava_version_9.0.4.0.0_production
    do i still need to do that step?No, you do not have to since "XML Parser for Java v9.0.4" is already installed as part of appsborg2.zip

  • Any document id for set up the alerts in oracle EBS

    Hi,
    Any document id for set up of alerts in oracle EBS. Or any site address for basiscs of setup of oracle alerts.

    Hi,
    Please see "Oracle Alert User's Guide" available at:
    Applications Releases 11i and 12
    http://www.oracle.com/technology/documentation/applications.html
    You can also refer to:
    Note: 868449.1 - How To Determine If An Environment Is Set Up With Response Processing Alerts?
    Note: 396315.1 - Oracle Alert Documentation Resources, Release 12
    Note: 104698.1 - Setup & Usage (Oracle Alert)
    Note: 271367.1 - Oracle Alert Alert Check Setup Test
    Regards,
    Hussein

  • How to create custom GUI interface for Cisco router?

                       Hello,
    I am working on a Cisco solution and I have my router configured for the solution I need. However, if a non-cisco person needs to use my solution then I think he will need a GUI interface which will have few "buttons" which when clicked will run some Cisco commands on Cisco router to make it work. Is there a way to design such GUI interface which is compatible with Cisco routers? I know Cisco has SDM, but that is too involved and detailed, which is useful only for people who know atleast a little bit about Cisco. Here I am looking at crowd who will have 0 knowledge of Cisco.
    Please let me know if something like this can be done. If yes, how and how easily?
    Thank you.

    There are lots of ways to do this - you can use SNMP or even HTTP to push or pull commands from Cisco devices. How easy it is to create a GUI depends on your programming skills. I would guess a simple web page triggering backend scripts would be the easiest way to do this.

  • Using JavaFX to rewrite GUI layer for Java Desktop Swing application

    From the faq's on javafx.com I read the following:
    I currently build applications in Java. Can I reuse my Java libraries in JavaFX Script?
    Yes. You can leverage the power of Java by using any Java library within a JavaFX application.
    This way you can preserve your investment in Java and use JavaFX to build engaging visual experiences.
    Can I use JavaFX to develop a user interface for my Java program?
    While it's easy to write your application in JavaFX and call into Java where necessary,
    the inverse - writing a Java application that calls into JavaFX for the user interface - is not yet true.
    We expect this to be addressed in the near future.
    * Perhaps I'm missing something, but I do not see the difference between the two questions, but they give completely different answers?
    * We have a swing application that we might want to use JavaFX to replace the current Swing user interface, however, we also have alot of business logic / communications code written in
    * Java that we aren't going to rewrite.
    Could someone tell me why the two questions have different answers?
    Thanks. Cheers.

    Hi Josh,
    I'm facing serious issue trying to invoke a javafx class from my java code. Could you please suggest a way to do it. Even hacks would be ood enough for now.
    I have created file Clock.fx. When run individually from my IDE (i'm using NetBeans) it works fine. But when i try to invoke it from a java class in project in throws exception.
    public static void main(String[] args) {
    ScriptEngineManager manager = new ScriptEngineManager();
    JavaFXScriptEngine fxEngine = (JavaFXScriptEngine) manager.getEngineByName("javafx");
    System.out.print("created fxEngine");
    try {
    Object o = fxEngine.eval ("Clock { property: \"Clock\" }");
    fxEngine.invokeMethod (o, "create");
    } catch (Exception ex) {
    ex.printStackTrace();
    I get following exception
    Exception thrown in JavaFX pretty printing: java.io.FileNotFoundException: \tmp\___FX_SCRIPT___.fxdump from StringInputBuffer (The system cannot find the path specified)
    Exception thrown in JavaFX pretty printing: java.io.FileNotFoundException: \tmp\___FX_SCRIPT___.fxdump from StringInputBuffer (The system cannot find the path specified)
    javax.script.ScriptException: compilation failed
    at com.sun.tools.javafx.script.JavaFXScriptEngineImpl.parse(JavaFXScriptEngineImpl.java:255)
    at com.sun.tools.javafx.script.JavaFXScriptEngineImpl.eval(JavaFXScriptEngineImpl.java:145)
    at com.sun.tools.javafx.script.JavaFXScriptEngineImpl.eval(JavaFXScriptEngineImpl.java:136)
    at javax.script.AbstractScriptEngine.eval(AbstractScriptEngine.java:247)
    at newpackage.Main.main(Main.java:29)
    Could you please give a solution to it. I would be obliged.

  • Creating GUI interface for cof

    I am attempting to create a GUI interface on Labview that will read the measurements from a load cell ( Futek model L2331) that is connected
    through a DAQ interface and  will output Coefficient of friction measurements vs time.  I would also like to be able to save the data to a file (eg...excel). 
    Can anyone help me out with this?
    JC

    What I suspect you need, more for comparison than anything else, is the Force in Newtons not the strain in µ strain.
    So one technique is to leave the input in volts and then figure out how many grams of weight gives how many volts from the load cell, and applying the necessory factors to give the force in Newtons unless of course your working in Christian units (lbs force).
    Either way, strain or volts you are going to have to calibrate the input. Unless the factors are all ready supplied. to arrive at the following
    "The
    coefficient of friction is simply µ =  Fspring /Fnormal
    =  Fspring /(mblock ·g
    ), g=9.81 m/s²"  Notice that there is no mention of strain here but force.
    Strain is defined as: - "The relative deformation of an object subjected to stress. Hence, strain is dimensionless."
    Don't forget to get the sense of compression and tension correct for the displayed units.

  • GUI interface for non-global zones

    My Goal:
    Create multiple zones, each running different services thus eliminating the need for multiple servers w/out using VMware.
    What I'm realizing:
    Everything I've read points back to non-global zones being only a console based environment. Does anyone know if it's possible to login to non-global zones with a GUI interface?
    Thanks,
    Rick

    We use the CDE login mechanism. From the CDE login screen on the global zone:
    [] Select Options, Remote Login, Enter Host Name from the CDE login screen.
    [] Enter the hostname (not the zone name!) of the non-global zone in the Enter the host name box.
    [] Click OK.
    [] Once the CDE login screen appears with the hostname of the non-globalzone listed at the top, log in as sysadmin.
    Notes: If the non-global zone or the system was recently booted, wait a few minutes and check to make sure that the cde-login service is running using the command:
    svcs -a | grep cde-login
    Also, if you have restricted /etc/Xaccess, you'll need to add your non-global zone to it.
    Message was edited by:
    r2ad
    Message was edited by:
    r2ad, http://www.r2ad.com

  • Webinar (Aug 11): How to create Cross-Platform Automated GUI Tests for Java Apps

    Join Squish expert, Amanda Burma, and learn how to create cross-platform automated GUI tests for your Java applications!
    Register here (multiple time slots)
    August 11th 2014
    Duration: 30 minutes plus Q & A
    This webinar will cover:
    General Squish for Java overview
    Automating BDD Scenarios
    Executing Cross-Platform Automated GUI Tests
    Interacting with Java application objects, properties & API
    See you there!
    Unable to attend? Register and we'll send links to future events and access to our webinar archive following the event.
    Webinar schedule
    Learn more about Squish
    Evaluate froglogic squish

    <property name="messaging.client.jar.path" value="Location in your local drive" />
    <property name="messaging.client.jar.name" value="nameOfYourFile.jar" />

  • Any GUI tool for JSF?

    Does anyone (IBM, SUN, Borland, open_source, etc) have GUI tool or GUI editor for building JSF?
    *Can I receive this forum at my email?                                                                                                                                                                                                                                                                               

    I just got back from the JavaONE convention in SF and Sun had a demo of an IDE project that is in progess. It was called "Project Rave". It looked like a really great tool. It had drag and drop components for a database query, web services functionality, and all of your JSP form objects. I was really impressed and think it will be a great tool. They also said that it would eventually support Java Rich Client development as well. They said it would not be available until Fall or the end of the year.
    -Andy

  • Any CASE tools for Java, JSP, and JavaBeans?

    For Java, JSP, and JavaBeans can we find something that can help us automate certain tasks?
    For example, CASE tools is an acronym for Computer Aided Software Engineering tools. I have a colleague use software to generate robust code for the database layer and with a few clicks of a button after the database is designed he can generate code that would otherwise take an hour or even hours to write and debug and test.
    Thanks for your time and help in advance!
    Cecilia

    The ones I know are MVCase (from Brazil) and Jude (from Japan). Both are free and I haven't fully tested them yet. It may help you.

  • Gui support for java

    hello friends,
    i am new to SUN fortran compiler. i have installed it. But what i have heard it has a gui interface to write fortran code and debug it. But i cant find it. is my installation incomplete or i am missing something? Command line compilation is working fine.

    There should be a sunstudio command. That will start the IDE (integrated development environment), which has an editor, debugger, and performance analysis tools.

  • GUI Interface FOR OAS 9i

    Dear All,
    I've installed OAS 9i all the package but I wondered that I
    don't have any GUI tool to manage the OAS like the old version
    4.0.8.
    IS it true that we only configure using the text files pointed
    to by help.
    Or Is their any other tool to use.
    Thanks
    Adel

    Louis,
    Citrix and/or Terminal Server are currently the only supported environments similar to what you have mentioned.  I am not currently aware of a partner in the US or Canada who has developed a GUI like the SAP R/3 GUI that you mentioned.  Possibly another contributor to SDN may have seen this?
    HTH,
    Eddy

  • Borland VisiBroker for java meet error when Installed Oracle 8i(V8.1.6)

    Oracle modified some register key value of Java Runtime
    Evironment which result in Java2IDL.exe's runninng error. I
    fixed the value in /software/javasoft/java runtime environment
    and reset the currentversion key to 1.3. Oralce use jre1.1.7.
    Can oracle meet errors when change it to sun jre1.3.1? May
    upgrade oracle jre1.1.7 to high version ? Tell me how to. Please
    tell me where to download If Oracle can't use Sun JRE1.3 . How
    can I deal with this problem and let VisiBroker for java and
    VisiBroker for C++ work well?
    Best Regards

    Hi,
    I am not aware of a sqlplus v8 for macosx so the nonexistence of it might be your problem. The way I remember it, there are sqlnet libs that are usable from other apps. What you could do is install the v9.2 developers release. This contains sqlplus and in that case just make sure the directory containing sqlplus is in your PATH (you also need a few other environment variables; they are set in DBENV).
    Ronald.
    http://ronr.nl/unix-dba

Maybe you are looking for

  • Get rid of BarChart Legend and create a Horizontal Line on a specific value

    Hey, i'm working with BarCharts. 1st Screen: I want to disable the Legend of my Barchart. http://imgur.com/wMo6Tfv,DRiNA9C Second Screen: I want to create a Line in my Barchart on a specific Value like 700 as seen on the screen. http://imgur.com/wMo6

  • Interactive Report Hyperlinks to Document

    I am converting an Access database to Apex manually due to the Access DB design flaws. I'm exporting tables that contain hyperlinks to documents on our server (from Access the user can link to the document). On export the liinked text exported as "ti

  • FCE 4 Automatic Color Corrections

    I imported some old VHS tapes (originally on 16 MM video camera, converted to VHS) via my ADVC-300. I am new to MAC and FCE so forgive my basic question, searches did not result in any hits. Anyone have suggestions on cleaning up the video? Can the f

  • NiceScroll integration problems! Advice please

    Dear all I have been doing my best to get niceScroll implemented in Edge Animate. Though it has bugs and undesired effects! # I'm using the latest Edge Animate # I am loading this Edge Animate composition in a fancy box Iframe from within another Edg

  • Iphoto two users, instructions not working

    My wife and I share a new Macbook. We want to share our iphoto library, and have two users. I have followed apple's instructions (http://support.apple.com/kb/HT1198) and it hasn't work. I has created a disk images. Changed ownerships, and changed per