up vote -1 down vote favorite
share [g+] share [fb]

I'm getting the following error when I try to run a Java class which interacts with Java DB.

I try loading driver with :

Class.forName("org.apache.derby.jdbc.EmbeddedDriver");

In libraries, "derby.jar" do exist. I'm using NetBeans IDE 6.0.

Could anyone help me to solve this problem?

link|improve this question

50% accept rate
You should add the error message. – tangens Nov 8 '09 at 9:08
1  
Always provide stack trace when reporting an error! – Thorbjørn Ravn Andersen Nov 8 '09 at 10:46
feedback

2 Answers

Make sure you added derby.jar to the classpath.

link|improve this answer
feedback

First, open the jar (with winrar or similar app) to make sure that the class is actually there, under the correct path !

If it is, then, my friend, you have a classpath issue - add the jar location to the project's classpath - usually you can see the classpath used where running the program in the log/ouput pane so you can make sure it's included.

Good luck ! Danny

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.