Add OPEN_FULLMUTEX flag into Database.h file

This commit is contained in:
Tomas Vajda 2020-08-11 18:40:08 +02:00
parent 8ecadfd629
commit 27f2cd2a7b

View File

@ -38,6 +38,8 @@ extern const int OPEN_READONLY; // SQLITE_OPEN_READONLY
extern const int OPEN_READWRITE; // SQLITE_OPEN_READWRITE
/// With OPEN_READWRITE: The database is opened for reading and writing, and is created if it does not already exist.
extern const int OPEN_CREATE; // SQLITE_OPEN_CREATE
/// Open database with thread-safety
extern const int OPEN_FULLMUTEX; // SQLITE_OPEN_FULLMUTEX
/// Enable URI filename interpretation, parsed according to RFC 3986 (ex. "file:data.db?mode=ro&cache=private")
extern const int OPEN_URI; // SQLITE_OPEN_URI