From 5ad4683e2e59ea1d00558945872089bebea1c2b1 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 18 Jul 2020 20:09:03 +0200 Subject: Fixed abc submodule --- src/db/DBController.ts | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/db') diff --git a/src/db/DBController.ts b/src/db/DBController.ts index 274e446..4188bd1 100644 --- a/src/db/DBController.ts +++ b/src/db/DBController.ts @@ -5,7 +5,7 @@ export default class DBController { private client?: Client; async init() { - this.client = await this.connect(); + await this.connect(); try { const sql = await readFileStr("./src/db/tables.sql"); const queries = sql.split(";"); @@ -18,9 +18,9 @@ export default class DBController { } } - async connect(): Promise { + async connect() { try { - return await new Client().connect({ + this.client = await new Client().connect({ hostname: Deno.env.get("DBHost"), username: Deno.env.get("DBUser"), db: Deno.env.get("DBName"), @@ -46,12 +46,13 @@ export default class DBController { if (!this.client) throw Error("Database isn't initialized yet!"); try { - await this.client.execute(query, params); + return await this.client.execute(query, params); } catch (e) { throw e; } } + // deno-lint-ignore no-explicit-any async execute_multiple(queries: any[][]) { if (!this.client) throw Error("Database isn't initialized yet!"); -- cgit v1.2.3