> You may be building on a system where they’ve still got SQLite 3.7.mumble 
> installed

In this case there are not two implementations present. Both libsqlite3.24.0.so 
and libsqlite3.so.0.8.6 were built from sqlite-autoconf-3240000. This is the 
only copy of libsqlite3 anywhere on the system.

> You may have noticed the continual pressure on this mailing list to be using 
> recent versions of SQLite.  One way to ensure that is to always statically 
> link.

That’s not an option, Tcl extensions are inherently dynamically loaded. If you 
use two Tcl extensions that call sqlite you need to ensure that both 
dynamically link to the same copy of the library. Not just the same version, 
the same copy, because they need to be operating on the same memory allocation 
arena and other globals.
_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to