We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b93de0a + 27f2cd2 commit cc2e488Copy full SHA for cc2e488
include/SQLiteCpp/Database.h
@@ -38,6 +38,8 @@ extern const int OPEN_READONLY; // SQLITE_OPEN_READONLY
38
extern const int OPEN_READWRITE; // SQLITE_OPEN_READWRITE
39
/// With OPEN_READWRITE: The database is opened for reading and writing, and is created if it does not already exist.
40
extern const int OPEN_CREATE; // SQLITE_OPEN_CREATE
41
+/// Open database with thread-safety
42
+extern const int OPEN_FULLMUTEX; // SQLITE_OPEN_FULLMUTEX
43
44
/// Enable URI filename interpretation, parsed according to RFC 3986 (ex. "file:data.db?mode=ro&cache=private")
45
extern const int OPEN_URI; // SQLITE_OPEN_URI
0 commit comments