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.
