Nicholas Thompson <nick.john.thomp...@googlemail.com> wrote:
> Is it possible to safely use multiple threads in a process with each
> thread making
> its own connection to the same database
> 
> rc = sqlite3_open("file::memory:?cache=shared", &db);

Every time you connect to a :memory: database, a new in-memory database is 
created. There ain't no such thing as two connections to the same memory 
database.
-- 
Igor Tandetnik

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

Reply via email to