|
|
Re: jdbc connectivity
|
Posted: Jul 26, 2005 6:39 AM
|
|
> hi , > thanks for u'r reply.....ia m using windows xp as the > operating system. JAVA_HOME is given as d:\j2sdk1.4.2 > > and i have set the classpath as > d:\oracle\0ra92\lib\classes111.jar,, even i am gettting > the error
Check if your jar carries the appropriate file:
jar tvf d:\oracle\0ra92\lib\classes111.jar
to see if this package actually carries oracle.jdbc.driver.OracleDriver
If it does, then your class path is not set correctly. This would be in your Control Panel.
Run the jar command first, lets eliminate the issues one at a time.
If it carries the package you should be able to see the file:
oracle/jdbc/driver/OracleDriver
in your results, if it doesn't carry it, you should be able to Google and download the appropriate Jar file.
> when i am using type 2 or 4 driver in the stand alone > system... > > "package oracle.jdbc.driver.OracleDriver() not found.." > > plz give me solution for the problem.. > > with regards, > kalyan...
|
|