In the docs:
http://www.sqlite.org/threadsafe.html
In serialized mode, it says: "In serialized mode, SQLite can be safely used by multiple threads without restriction."
I want to make sure that I understand the warranty provided. If one connection to the database is opened using the SQLITE_OPEN_FULLMUTEX flag and two threads try to call sqlite3_exec at the same time at the same time, does Sqlite automatically serialize the calls?
source
share