up vote 2 down vote favorite
1
share [g+] share [fb]

I am doing some practice with clsql. I want to connect my oracle server hence my connection function is;

(connect '("192.168.2.3" "xe" "username" "password") :database-type :oracle)

when i hit the return, the following error message shows up.

Couldn't load foreign libraries "libclntsh", "oci". (searched *FOREIGN-LIBRARY-SEARCH-PATHS*) [Condition of type SIMPLE-ERROR]

I have already installed oracle-instantclient11.2-basic-11.2.0.1.0-1.i386.rpm

and define export LD_LIBRARY_PATH=/usr/lib/oracle/11.2/client/lib

So, what else should I do to connect the server?

link|improve this question
What operating system? What Lisp compiler? How is CLSQL installed (asdf-install, clbuild, etc)? – Ken Aug 28 '10 at 15:28
When I had trouble connecting to MySQL, part of the trouble was word length: the OS, Lisp, and MySQL libraries were a mix of 32- and 64-bit. (I never got it to work completely, but fixing this at least caused it to fail later in the process!) – Ken Aug 28 '10 at 15:29
I am using linux (fedora 13), my lisp interpreter is sbcl and i installed clsql by clbuild. I also got similar error with mysql as well. – haluk Aug 29 '10 at 1:22
Do the files mentioned in the error message exist somewhere on your system? If so, where? And are the directories where these files exist (if they do) in FOREIGN-LIBRARY-SEARCH-PATHS, which I suspect is a collection of some sort in your LISP environment? – Bob Jarvis Apr 27 '11 at 12:18
feedback

1 Answer

One thing that trips me up with dynamic linking to the Oracle libs (in C/C++ that is), is the fact that the libclntsh.so shared object comes with the version after the so name. So you may need to create a soft link in the same directory, ensuring that the soft link name is just libclntsh.so

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.