m christensen wrote:
I don't know if it does or not.
I intended to do both, but...
I can not get any variant I tried of --select sqlite_version(); -- to
execute.
It always complained about the statement in one way or another.
It does work with the current shell. I'm not sure when this function was
added though I think it has been around for a long time.
C:\Documents and Settings\DennisC>sqlite3
SQLite version 3.3.5
Enter ".help" for instructions
sqlite> select sqlite_version();
3.3.5
sqlite>
BUT....
Between your help and Mr. Jackson and the ldd tool I found the problem.
SQLite.so does indeed use libsqlite3.so.0, in my case.
I installed both SQLite 3.2.7 AND the perl DBD library which should
both contain all the code
and build the required libs.
libsqlite3.so was built and installed into /usr/local/lib
The problem is the fact it appears my OS came with a copy of SQLite
preinstalled, in /usr/lib.
Dynamic Linking found that one first.
Problem solved, Thanks everyone.
Good to hear your problem is solved.