Re: [sqlite] open/close db's across threads

2009-02-13 Thread Kees Nuyt
On Fri, 13 Feb 2009 09:22:42 -0800, ed wrote in General Discussion of SQLite Database : >any help on this would be appreciated. >thanks, >ed Perhaps your question is too general to react upon. >-- Forwarded message -- > >Hello,I have

[sqlite] open/close db's across threads

2009-02-13 Thread ed
any help on this would be appreciated. thanks, ed -- Forwarded message -- Hello,I have an application that is calling sqlite3_open() in one thread and sqlite3_close() in a different thread. The db's can potentially be opened and closed many times during execution of my app.

[sqlite] open/close db's across threads

2009-02-10 Thread ed
Hello,I have an application that is calling sqlite3_open() in one thread and sqlite3_close() in a different thread. The db's can potentially be opened and closed many times during execution of my app. Could this potentially introduce any problems? In particular, I am trying to determine why