aboutsummaryrefslogtreecommitdiff
path: root/src/db/DBController.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/db/DBController.ts')
-rw-r--r--src/db/DBController.ts10
1 files changed, 4 insertions, 6 deletions
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 {