Hi I am trying to do client side load on Linux and getting the following error:
Exceptioninthread"main"java.lang.UnsatisfiedLinkError: /home/local/libdbdb12_r.so:libdbtasks12_r.so:cannotopensharedobjectfile:Nosuchfileordirectory
I am using iAnywhere driver as shown below
Class.forName("ianywhere.ml.jdbcodbc.jdbc3.IDriver") //to load this driver I am using jodbc.jar which comes under IQ15 client java folder
My jdbc url is given below:
String jdbcURL = "jdbc:ianywhere:driver=libdbodbc_r.so;UID=user;PWD=pass;DBN=sMDNC;eng=IQSR1;" +
"CommLinks=tcpip{host=xyz.com;port=2345}";
I am also setting LD_LIBRARY path to /home/local where libdbodb_r.so file is residing but still getting error. Please help I am new to Sybase IQ.