I am doing load libtdbcmysql1.0.0.so
in a tcl script (linux), which is giving error:
couldn't load file "libmysql.so.15"
I thought libmysql.so.15
might be a dependent library for libtdbcmysql1.0.0.so
, so I checked using
ldd libtdbcmysql1.0.0.so
but this command gave following output:
linux-gate.so.1 => (0xffffe000)<br>
libc.so.6 => /lib/libc.so.6 (0xf7da1000)<br>
/lib/ld-linux.so.2 (0x003b4000)<br>
As we can see it does not mention anything about libmysql.so.15
.
Anyone can please explain what is happening here? And how to resolve this error?