Updating path to sqlite db file
This commit is contained in:
parent
6257ce0d38
commit
3bef2a8819
1 changed files with 1 additions and 1 deletions
|
|
@ -4,7 +4,7 @@ import { asyncLocalStorage } from '../logger'
|
||||||
import { CREATE_TABLE_reservations } from './sql'
|
import { CREATE_TABLE_reservations } from './sql'
|
||||||
|
|
||||||
export const run = async (sql: string, params?: unknown) => {
|
export const run = async (sql: string, params?: unknown) => {
|
||||||
const db = new sqlite.Database(resolve('autobaan_db'))
|
const db = new sqlite.Database(resolve('./db/autobaan_db'))
|
||||||
await new Promise<void>((res, rej) => {
|
await new Promise<void>((res, rej) => {
|
||||||
asyncLocalStorage.getStore()?.debug(`<database> run ${sql} (${params})`)
|
asyncLocalStorage.getStore()?.debug(`<database> run ${sql} (${params})`)
|
||||||
db.run(sql, params, (err) => {
|
db.run(sql, params, (err) => {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue