Igor Tandetnik wrote:

> Is this DLL statically linked to SQLite, or itself uses sqlite3.dll?
> 

This DLL is statically linked to SQLite.

> 
> If you have several modules, each statically linked with SQLite, then 
> you have multiple copies of SQLite runtime in the same process. This is 
> a recipe for disaster. Such configuration can only works if modules' 
> usage of SQLite is completely isolated: they don't pass SQLite resources 
> (e.g. connectionn or statement handles) across module boundaries, and 
> they don't attempt to work against the same database file at the same 
> time.
> 
> Would it be possible to get all modules to use SQLite DLL? Then all your 
> problems will go away.
> 

I will try this. Thanks for help!

Best regards,
Jacek
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to