Skip to content

Commit

Permalink
Add SQLITE_OPEN_FULLMUTEX flag
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomas committed Jun 4, 2020
1 parent 6a5a24f commit 8ecadfd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Database.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ const int OPEN_READONLY = SQLITE_OPEN_READONLY;
const int OPEN_READWRITE = SQLITE_OPEN_READWRITE;
const int OPEN_CREATE = SQLITE_OPEN_CREATE;
const int OPEN_URI = SQLITE_OPEN_URI;
const int OPEN_FULLMUTEX = SQLITE_OPEN_FULLMUTEX;

const int OK = SQLITE_OK;

Expand Down

0 comments on commit 8ecadfd

Please sign in to comment.