On Thu, Aug 21, 2014 at 3:05 PM, George Ionescu <[email protected]> wrote:
> Hello dear sqlite users, > > is it ok to mix journal modes from different threads accessing the same > database? > SQLite does not allow you to mix WAL mode with other journal modes. Wal-mode is a property of the database file. If you change to WAL-mode, then *all* database connections must go to WAL-mode. -- D. Richard Hipp [email protected] _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

