removed ; after the PRAGMA command

This commit is contained in:
Joseph Benguira 2022-07-31 19:00:19 +03:00 committed by GitHub
parent 82b9bfc5a0
commit 71d62ee151
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -148,7 +148,7 @@ class Database {
await R.exec("PRAGMA auto_vacuum = FULL");
//Avoid error "SQLITE_BUSY: database is locked" by allowing SQLITE to wait up to 5 seconds to do a write
await R.exec("PRAGMA busy_timeout = 5000;");
await R.exec("PRAGMA busy_timeout = 5000");
// This ensures that an operating system crash or power failure will not corrupt the database.
// FULL synchronous is very safe, but it is also slower.