Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit cc2e488

Browse files
authoredAug 11, 2020
Merge pull request SRombauts#291 Add OPEN_FULLMUTEX flag into Database.h file from rwrx/fullmutex-flag
2 parents b93de0a + 27f2cd2 commit cc2e488

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎include/SQLiteCpp/Database.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ extern const int OPEN_READONLY; // SQLITE_OPEN_READONLY
3838
extern const int OPEN_READWRITE; // SQLITE_OPEN_READWRITE
3939
/// With OPEN_READWRITE: The database is opened for reading and writing, and is created if it does not already exist.
4040
extern const int OPEN_CREATE; // SQLITE_OPEN_CREATE
41+
/// Open database with thread-safety
42+
extern const int OPEN_FULLMUTEX; // SQLITE_OPEN_FULLMUTEX
4143

4244
/// Enable URI filename interpretation, parsed according to RFC 3986 (ex. "file:data.db?mode=ro&cache=private")
4345
extern const int OPEN_URI; // SQLITE_OPEN_URI

0 commit comments

Comments
 (0)
Failed to load comments.