Dear Daniweb Members,
First of all sorry my english writing.
I installed JavaJDK 7u13 with NetBeans 7.2.1 and db-derby-10.5.3.0-bin.zip on a fresh OS. Then i set the environment variables according to their relative paths as seen below. By using ij the test database and the test table created, records inserted and displayed by using select. In command line and also in NetBeans IDE the HelloWorld console app run successfully. So far everything was fine. But when i try to make a connection inside NetBeans by using the code below i got the following exception. It prevents the application run correctly.
Any help will be gratefully appreciated.
Exception in thread "main" java.lang.ClassNotFoundException: org.apache.derby.jdbc.EmbeddedDriver
at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
at java.lang.ClassLoader.loadClass(ClassLoader.java:423)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
at java.lang.ClassLoader.loadClass(ClassLoader.java:356)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:188)
at seconexample.SeconeXample.main(SeconeXample.java:26)
Java Result: 1
BUILD SUCCESSFUL (total time: 0 seconds)**
***********************************************************************************
The environment variables settings :
**JAVA_HOME** = C:\Program Files\Java\jdk1.7.0_13 ;
**DERBY_HOME** = C:\Apache\db-derby-10.5.3.0-bin;
**CLASSPATH ** = %DERBY_INSTALL%\lib\derby.jar;%DERBY_INSTALL%\lib\derbytools.jar;
**Path** = %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;C:\Program Files\Java\jdk1.7.0_13\bin;
**DERBY_INSTALL** = C:\Apache\db-derby-10.5.3.0-bin;