diff options
author | Marvin Borner | 2020-07-18 22:37:00 +0200 |
---|---|---|
committer | Marvin Borner | 2020-07-18 22:38:45 +0200 |
commit | accb147b54bc99e5cd20059be5cb333031f15885 (patch) | |
tree | 8523ad288cb4fbf84acd6a646bd7c04957298bf4 /src/db/DBController.ts | |
parent | d3c4b447c3d882a77282e32d9e12d7c3d4f034a2 (diff) |
Added user registration
Co-authored-by: LarsVomMars <lars@kroenner.eu>
Diffstat (limited to 'src/db/DBController.ts')
-rw-r--r-- | src/db/DBController.ts | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/src/db/DBController.ts b/src/db/DBController.ts index 416f695..1bb91ba 100644 --- a/src/db/DBController.ts +++ b/src/db/DBController.ts @@ -11,7 +11,6 @@ export default class DBController { const queries = sql.split(";"); queries.pop(); for (const query of queries) await this.execute(query); - // queries.forEach(async (query) => await this.execute(query)); console.log("Tables created"); } catch (e) { console.error("Could not create tables"); @@ -34,28 +33,30 @@ export default class DBController { } } - async query(query: string, params?: string[]) { - if (!this.client) throw Error("Database isn't initialized yet!"); + async query(query: string, params?: (boolean | number | any)[]) { + if (!this.client) await this.connect(); try { - return await this.client.query(query, params); + const res = await this.client!.query(query, params); + console.log(res); + return res; } catch (e) { throw e; } } - async execute(query: string, params?: string[]) { - if (!this.client) throw Error("Database isn't initialized yet!"); + async execute(query: string, params?: (boolean | number | any)[]) { + if (!this.client) await this.connect(); try { - return await this.client.execute(query, params); + return await this.client!.execute(query, params); } catch (e) { throw e; } } - async execute_multiple(queries: (string[] | string)[][]) { - if (!this.client) throw Error("Database isn't initialized yet!"); + async execute_multiple(queries: ((boolean | number | any)[] | string)[][]) { + if (!this.client) await this.connect(); try { await this.client!.transaction(async (conn) => { |