diff --git a/cpp/src/db/db_connection.cpp b/cpp/src/db/db_connection.cpp index 2c97268ac9372935462abe325b8b2e38da6222b1..2870a9a4477930c4c7d337f1c472c3380cc01b8d 100644 --- a/cpp/src/db/db_connection.cpp +++ b/cpp/src/db/db_connection.cpp @@ -20,7 +20,7 @@ SqliteDBPtr connect() { SqliteDBPtr temp = std::make_shared(initStorage(storage_file_name)); temp->sync_schema(); temp->open_forever(); // thread safe option - temp->pragma.journal_mode(journal_mode::WAL); // WAL => write ahead log + //temp->pragma.journal_mode(journal_mode::WAL); // WAL => write ahead log return temp; }