I am doing load libtdbcmysql1.0.0.soin tcl script (linux) which gives an error:
Could not load file "libmysql.so.15"
I thought it libmysql.so.15might be a dependent library for libtdbcmysql1.0.0.so, so I checked with
ldd libtdbcmysql1.0.0.so
but this command produced the following result:
linux-gate.so.1 => (0xffffe000)<br>
libc.so.6 => /lib/libc.so.6 (0xf7da1000)<br>
/lib/ld-linux.so.2 (0x003b4000)<br>
As we see, he does not say anything about libmysql.so.15.
Can anyone explain what is going on here? And how to solve this error?
source
share