SQLite threadmode...
Posted: Fri Aug 19, 2011 9:07 am
Does anyone know what mode SQLite is supplied in with PB?
Hopefully it is mode 3?1. Single-thread. In this mode, all mutexes are disabled and SQLite is unsafe to use in more than a single thread at once.
2. Multi-thread. In this mode, SQLite can be safely used by multiple threads provided that no single database connection is used simultaneously in two or more threads.
3. Serialized. In serialized mode, SQLite can be safely used by multiple threads with no restriction.