revert back to node-sqlite3

This commit is contained in:
LouisLam 2021-09-01 15:02:04 +08:00
parent bc70ecfba7
commit e4b76717be

View file

@ -121,11 +121,8 @@ class Database {
return statement !== "";
})
// Use better-sqlite3 to run, prevent "This statement does not return data. Use run() instead"
const db = await this.getBetterSQLite3Database();
for (let statement of statements) {
db.prepare(statement).run();
await R.exec(statement);
}
}