Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

package oracle.jdbc.driver does not exist

Status
Not open for further replies.
Jun 23, 2003
1
US
I keep getting this message when I compile my program. I believe I have the classpath set up properly with the classes12.zip and the others...


I dont know what the problem is... here is what I have in my classpath:

C:\oracle\ora92\jdbc\lib\ojdbc14.jar;
C:\oracle\ora92\jdbc\lib\nls_charset12.zip;
C:\oracle\ora92\jdbc\lib\classes12.zip;
C:\tomcat\Tomcat-4-1-18\common\lib\servlet.jar;
D:\School\SPRING 2003\JAVA

Am I missing anything


Here is the code im using for the java program:

DriverManager.registerDriver(
new oracle.jdbc.driver.OracleDriver());
Class.forName("oracle.jdbc.driver.OracleDriver");

myConnection = DriverManager.getConnection("jdbc:eek:racle:eek:ci:mad:the_mack", "system", "matrixtech");

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top