-
Notifications
You must be signed in to change notification settings - Fork 1
/
init-db.go
54 lines (47 loc) · 875 Bytes
/
init-db.go
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package main
import (
"database/sql"
"log"
_ "modernc.org/sqlite"
)
type DB struct {
connection *sql.DB
}
func (db *DB) initDB() {
tables := []string{`
CREATE TABLE IF NOT EXISTS mem (
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
time INTEGER,
total INTEGER,
available INTEGER
);
`,
`
CREATE TABLE IF NOT EXISTS cpu (
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
time INTEGER,
"index" INTEGER,
percent INTEGER
);
`,
}
for _, table := range tables {
_, err := db.connection.Exec(table)
if err != nil {
log.Fatal("couldn't create table", table, err)
}
}
}
func (db *DB) connect() {
connection, err := sql.Open("sqlite", "file:vision.db")
if err != nil {
log.Fatal("couldn't open sqlite database", err)
}
db.connection = connection
db.initDB()
}
func NewDB() *DB {
db := new(DB)
db.connect()
return db
}