Results 1 to 7 of 7
- 08-02-2007, 05:57 PM #1
Member
- Join Date
- Aug 2007
- Posts
- 4
- Rep Power
- 0
java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver
Hi everybody
I'm new in java Platform and i have problems trying to load a JDBC driver using Class.forname, but JVM can not find it. I configured classpath enviroment path pointig to libraries
OS: Windows XP
Java Version 1.6
IDE Eclipse 3.2.2
classpath = .;C:\Program Files\Altova\xmlspy\XMLSpyInterface.jar;c:\program files\Microsoft SQL Server 2000 Driver for JDBC\lib\msbase.jar;c:\program files\Microsoft SQL Server 2000 Driver for JDBC\lib\msutil.jar;c:\program files\Microsoft SQL Server 2000 Driver for JDBC\lib\mssqlserver.jar;D:\oracle\ora92\jdbc\lib\ classes12.zip
java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClassInternal(Unknown Source)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Unknown Source)
at bpos.Db.Conectar(Db.java:20)
at bpos.Process.main(Process.java:19)
Can anybody help me about this? It will appreciate.
Leo
- 08-03-2007, 05:04 PM #2
Member
- Join Date
- Aug 2007
- Posts
- 4
- Rep Power
- 0
Hello Leo,
Try putting the full path to the Oracle classes12.zip file at the front of the CLASSPATH. Also remove the extra space between the \ and classes12.zip.
Before you test with an app, ensure the driver returns version information by running this command on the command line:
java oracle.jdbc.driver.OracleDriver
If that command does not work, you still have environment problems and need to revisit before you test with the app.
Best regards,
Netrista Khatam
Technical Services Manager
OpenLink Product Support
- 08-03-2007, 05:33 PM #3
Member
- Join Date
- Aug 2007
- Posts
- 4
- Rep Power
- 0
it doesn't work yet...
Hi Netrista.. thank you for your help.. I checked my enviroment variables and i didn't find problems. I think that was copy paste mistake. I put first the oracle driver library reference into the classpath enviroment variable
C:\>echo %classpath%
.;D:\oracle\ora92\jdbc\lib\classes12.zip;C:\Progra m Files\Altova\xmlspy\XMLSpyInterface.jar;c:\program files\Microsoft SQL Server 2000 Driver for JDBC\lib\msbase.jar;c:\program files\Microsoft SQL Server 2000 Driver for JDBC\lib\msutil.jar;c:\program files\Microsoft SQL Server 2000 Driver for JDBC\lib\mssqlserver.jar
I performed your suggested command and i couldn't get the version of each class i'm trying to use
C:\>java oracle.jdbc.driver.OracleDriver
Exception in thread "main" java.lang.NoSuchMethodError: main
C:\>java com.microsoft.jdbc.sqlserver.SQLServerDriver
null
any other thing that it could be used? thanks!
Leo
- 08-03-2007, 06:10 PM #4
Member
- Join Date
- Aug 2007
- Posts
- 4
- Rep Power
- 0
Hello Leo,
This is what I would recommend:
1. Verify that the following path is correct:
D:\oracle\ora92\jdbc\lib\classes12.zip
2. Insure no permissions issues exist on that file or directory structure, which is unlikely since it is Windows.
3. Run this command to get your java version:
java -version
4. Insure that the java version of the JVM/JDK that you have installed on Windows is compatible with the requirements of the driver.
Can you state whether or not you can use the other JDBC drivers to get a connection using the application, even though they error on the commandline with DOS. I've seen that before, so it's important to ascertain whether the app connectivity issue is specific to Oracle or generalized to all JDBC connections.
Best regards,
Netrista Khatam
Technical Services Manager
OpenLink Product Support
- 08-06-2007, 05:30 PM #5
Member
- Join Date
- Aug 2007
- Posts
- 4
- Rep Power
- 0
Fixed!
Thank you very much.
The classpath was correct. I proved on command line and it worked correctly. So i have to change my approach looking for into my IDE project definition parameters. I' m using Eclipse and i found that i have to define a classpath for the project.
Ups! I'm new in Eclipse too.. and i forgot mention it. Your description of the solution helped me to find the final solution. Thank you!
Leo
- 03-03-2009, 05:12 PM #6
Member
- Join Date
- Mar 2009
- Posts
- 1
- Rep Power
- 0
- 02-19-2010, 01:57 PM #7
I had the same problem in eclipse with mysql-driver. But then I tried this: right-click the project that need the db-driver and select "Run As" then "Run Configuration". in the classpath-tab select "Add External JARs" and then navigate to the folder where the db-jar file is and select it. compile and let me know ... good luck.
Similar Threads
-
ClassNotFoundException com.mysql.jdbc.Driver
By Heather in forum JDBCReplies: 4Last Post: 03-31-2010, 12:08 PM -
java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver
By haneeshrawther in forum Advanced JavaReplies: 0Last Post: 03-21-2008, 01:13 PM -
failure at Class.forName("oracle.jdbc.driver.OracleDriver");
By RonNYC in forum EclipseReplies: 1Last Post: 03-14-2008, 02:51 PM -
Jdbc Driver For Oracle
By Swamipsn in forum New To JavaReplies: 0Last Post: 08-14-2007, 04:31 AM -
java.lang.ClassNotFoundException: sun.jdbc.odbc.JdbcOdbcDriver
By Marcus in forum JDBCReplies: 1Last Post: 06-27-2007, 05:57 PM


LinkBack URL
About LinkBacks


Bookmarks