From 27f2cd2a7ba967d25429a4b9476d58e787b73440 Mon Sep 17 00:00:00 2001 From: Tomas Vajda Date: Tue, 11 Aug 2020 18:40:08 +0200 Subject: [PATCH] Add OPEN_FULLMUTEX flag into Database.h file --- include/SQLiteCpp/Database.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/SQLiteCpp/Database.h b/include/SQLiteCpp/Database.h index decd38c..3c1b4d8 100644 --- a/include/SQLiteCpp/Database.h +++ b/include/SQLiteCpp/Database.h @@ -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