Sorry, but there are no more tags available to filter with.
-
Qing responds: Hi Steven,You
are so knowledgeable in C and Oracle. I have a urge to consult from you
where to start to get myself familiar with Oracle library like you did.
I wish that I could tell from error message what object belongs to
which Oracle library.
Now I can compile without problem and C binary file was generated. But when I run ...
-
Qing Zhang writes back: Hi Steven,I
just login to here and very glad to see that there is a reply. Thank
you so much for your input. I added -L $ORACLE_HOME/lib -lclntsh in my
makefile. When I compile it again. I got less error messages. Here is
what I got: make/opt/SUNWspro/bin/cc -I/opt/clarify/v8.5/clearapi/solaris_server/include -c ...
-
The simple and quick answer is that you require the Oracle libraries to
be added to the compilation command line. All the unresolved objects
come from the Oracle library libclntsh. Simply adding : -L $ORACLE_HOME/lib -lclntsh
to your compilation line should solve this.
I
believe (though not sure) that this library comes loaded as part ...
-
Here's a Clarify developer with Verisign looking for answers: I am experiencing the C compilation error with Oracle 8.1.7 libdb.a.
I used the following script to create the libdb.a.
#!/bin/ksh#This is a script which can be used to build libdb.a with Oracle 8.1.7 on Solaris##########
cd /opt/clarify/v8.5/clearapi/solaris_server/libsrm ...