Merge pull request #291 Add OPEN_FULLMUTEX flag into Database.h file from rwrx/fullmutex-flag

This commit is contained in:
Sébastien Rombauts 2020-08-12 00:03:55 +02:00 committed by GitHub
commit cc2e488d1a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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