vote up 0 vote down star

I am writing a java program to connect to an oracle server using the jdbc oci drivers.Im using the oracle.jdbc.OracleDriver driver and the following connection string jdbc:oracle:oci:@test.

I am working with 11g client. My machine is a HP-UX 11.23 Itanium 64 bit machine.

I run the app by pointing the java library path to the lib folder of oracle install and classpath to the ojdbc5.jar file so that it can locate the driver.

java -Djava.library.path=$LD_LIBRARY_PATH -classpath $ORACLE_HOME/jdbc/lib/ojdbc5.jar:test.jar test.Test

My LD_LIBRARY_PATH,SHLIB_PATH and ORACLE_HOME paths are set.

On running the command I get the following error:

Exception in thread "main" java.lang.UnsatisfiedLinkError: no ocijdbc11 in java.library.path

I have run the program on Solaris and Aix and it runs fine. It even works on HP-UX PA-Risc machine. I am not able to figure out the root cause of the issue.

I tried checking the libraries with the ldd -s libocijdbc11.so and all the dependent libraries seem to be there.

flag

You're sure you want to use the OCI driver? The JDBC driver can connect directly to Oracle without going through the native drivers, it's a lot easier. – skaffman Sep 16 at 13:14
yes..The thin driver requires host and port info which I wont have in my app..By using the oci,I can use just the instance,user name and password to connect.. – Fell Sep 17 at 14:15

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.