aboutsummaryrefslogtreecommitdiff
path: root/src/db/DBController.ts
diff options
context:
space:
mode:
authorLarsVomMars2020-07-12 18:07:59 +0200
committerLarsVomMars2020-07-12 18:07:59 +0200
commite39dbbaeaee6d3dcf40bf74aba932aacfa34fa18 (patch)
tree09a40a99e40f765f569d14a7ce678df9135f27a5 /src/db/DBController.ts
parent7023dc2a6920aa6389ac2b28bcdbaacdb4413e00 (diff)
Example code
Diffstat (limited to 'src/db/DBController.ts')
-rw-r--r--src/db/DBController.ts31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/db/DBController.ts b/src/db/DBController.ts
new file mode 100644
index 0000000..67c6afc
--- /dev/null
+++ b/src/db/DBController.ts
@@ -0,0 +1,31 @@
+import { Client } from "https://deno.land/x/mysql/mod.ts";
+import tables from "./tables.ts";
+
+export default class DBController {
+ async init() {
+ const conn = await this.connect();
+ try {
+ tables.forEach((table) => conn.execute(table));
+ console.log("Tables created");
+ } catch (e) {
+ console.error("Could not create tables");
+ throw e;
+ } finally {
+ conn.close();
+ }
+ }
+
+ async connect(): Promise<Client> {
+ try {
+ return await new Client().connect({
+ hostname: Deno.env.get("DBHost"),
+ username: Deno.env.get("DBUser"),
+ db: Deno.env.get("DBName"),
+ password: Deno.env.get("DBPassword"),
+ });
+ } catch (e) {
+ console.error("Could not connect to database");
+ throw e;
+ }
+ }
+}