I am trying to connect to oraccle by using thin driver and Oci.. I am getting an error oracle.jdbc.oracledriver not found... I have installed oracle 8.1.5 and included E:\oracle\ora81\jdbc\lib to my path. I don't know why it is giving that error... Can anybody telll me what the problem is... Thanks
Kevin Mukhar
Ranch Hand
Joined: Nov 28, 2000
Posts: 83
posted
0
This sounds like a classpath problem. The OracleDriver class is located in the classes12.zip file (or classes111.zip if you are still using JDBC 1.0 and JDK1.1). The filename of the zip file must be part of the classpath. It's not enough to put E:\oracle\ora81\jdbc\lib into the classpath, you have to include the .zip filename as well: E:\oracle\ora81\jdbc\lib\classes12.zip.