The page http://www.sqlite.org/threadsafe.html mentions:
- Single-thread
- Multi-thread
- Serialized
Which mode is the sqlite that is integrated in iOS 5 compiled in?
|
The page http://www.sqlite.org/threadsafe.html mentions:
Which mode is the sqlite that is integrated in iOS 5 compiled in? |
|||
|
|
|
OK, so sqlite3_threadsafe() returns 2 so it is compiled with SQLITE_CONFIG_MULTITHREAD on iOS. That is unfortunate, I would have liked Serialized. sqlite3_config(SQLITE_CONFIG_SERIALIZED) unfortunately gives me SQLITE_MISUSE |
|||
|
|
|
As per this answer - http://stackoverflow.com/a/7799021/40444 It appears you can do the following:
However it's unclear if this officially works. |
|||
|
|