blob: 67c6afca938efc5794599f42608a12aa242a5d5f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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;
}
}
}
|