From 781f0baee0a6514fd57b4f964344febd32bc45d1 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 18 Jul 2020 23:48:04 +0200 Subject: Fiiiiiixxxxx! (or sth) Co-authored-by: LarsVomMars --- src/db/DBController.ts | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'src/db/DBController.ts') diff --git a/src/db/DBController.ts b/src/db/DBController.ts index 1bb91ba..cb714b3 100644 --- a/src/db/DBController.ts +++ b/src/db/DBController.ts @@ -33,19 +33,17 @@ export default class DBController { } } - async query(query: string, params?: (boolean | number | any)[]) { + async query(query: string, params?: (boolean | number | string)[]) { if (!this.client) await this.connect(); try { - const res = await this.client!.query(query, params); - console.log(res); - return res; + return await this.client!.query(query, params); } catch (e) { throw e; } } - async execute(query: string, params?: (boolean | number | any)[]) { + async execute(query: string, params?: (boolean | number | string)[]) { if (!this.client) await this.connect(); try { @@ -55,7 +53,7 @@ export default class DBController { } } - async execute_multiple(queries: ((boolean | number | any)[] | string)[][]) { + async execute_multiple(queries: ((boolean | number | string)[] | string)[][]) { if (!this.client) await this.connect(); try { -- cgit v1.2.3