| Author |
Getting an Exception like NoClassDefFoundError
|
shiva mistry
Greenhorn
Joined: Feb 05, 2013
Posts: 10
|
|
When I am trying to run this code from console I getting an error like "Exception Thread main java.lang.NoClassDefFoundError: oracle/jdbc/driver/oracledriver " can any one help me ?I have already provided URL ,username and password in stdDAO object .
|
 |
Greg Charles
Bartender
Joined: Oct 01, 2001
Posts: 2535
|
|
|
In order to create a JDBC connection to Oracle, which is what StudentDAO must be doing, you have to have the Oracle JDBC driver in your classpath. That's probably going to be in a file called ojdbc14.jar, ojdbc15.jar, or something like that. It depends on which versions of Oracle and Java you are using. The old, old Oracle JDBC driver was in classes12.zip, but I don't think anyone uses that anymore.
|
 |
shiva mistry
Greenhorn
Joined: Feb 05, 2013
Posts: 10
|
|
Thanks Greg
|
 |
 |
I agree. Here's the link: jrebel
|
|
subject: Getting an Exception like NoClassDefFoundError
|
|
|