Fix: Start using sqlite module that actually uses promises.

For now export legacy sqlite3 module until other code is refactored.
This commit is contained in:
baldo 2019-03-29 22:26:54 +01:00
parent 2beab45f32
commit 2e27e63f94
3 changed files with 28 additions and 2 deletions
server/db

View file

@ -48,6 +48,7 @@ async function applyMigrations(db) {
}
async function init() {
const sqlite = require('sqlite');
const SQLite3 = require('sqlite3');
const file = config.server.databaseFile;
@ -55,7 +56,7 @@ async function init() {
let db;
try {
db = new SQLite3.Database(file);
db = await sqlite.open(file);
}
catch (error) {
Logger.tag('database').error('Error initialzing database:', error);
@ -72,7 +73,16 @@ async function init() {
throw error;
}
module.exports.db = db;
let legacyDB;
try {
legacyDB = new SQLite3.Database(file);
}
catch (error) {
Logger.tag('database').error('Error initialzing legacy database lib:', error);
throw error;
}
module.exports.db = legacyDB;
}
module.exports = {