-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdb.go
109 lines (76 loc) · 2.14 KB
/
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
package main
import (
"database/sql"
"log"
"os/exec"
"strings"
_ "github.com/mattn/go-sqlite3"
)
// ...
// initDB - initialise the database, and pass on a pointer to the instance
func initDB(dbFile string) (*sql.DB, error) {
DB, err := sql.Open("sqlite3", dbFile)
if err != nil {
log.Fatalf("Error opening Database connection: %v", err)
return nil, err
}
return DB, nil
}
// schema - pipes the created queries for inserting the schema
// from mdb-tools into sqlite3 database.
func schema(filename string, db *sql.DB) error {
log.Println(*dir + "/" + filename)
out, err := exec.Command("mdb-schema", *dir+"/"+filename, "sqlite").Output()
if err != nil {
log.Print("Could not execute the command mdb-schema: ", err)
return err
}
queries := strings.Split(string(out), ";")
for _, query := range queries {
_, err := db.Exec(query + ";")
if err != nil {
log.Printf("Could not execute the query transaction: %v", err)
return err
}
}
return nil
}
// dumpToSQL - Sets the environment variables for the arabic characters
// and then pipes the output from mdb tools into sqlite3 for the
// insert queries to insert the data.
func dumpToSQL(filename string, db *sql.DB) error {
err := prepareEnv()
if err != nil {
log.Fatal(err)
return err
}
out, err := exec.Command("mdb-tables", "-1", *dir+"/"+filename).Output()
if err != nil {
log.Fatalf("Can not execute command mdb-tables: %s", err)
return err
}
tables := strings.Split(string(out), "\n")
log.Printf("======== Starting Data Insertion in: %s", filename)
for _, table := range tables {
out, err := exec.Command("mdb-export", "-I", "sqlite", *dir+"/"+filename, table).Output()
if err != nil {
log.Fatalf("unable to export mdb as Sql queries: %v", err)
return err
}
queries := strings.Split(string(out), "\n")
for count, query := range queries {
if query == "" {
continue
}
log.Printf("Currently on %s and query number %d", table, count)
_, err := db.Exec(query)
if err != nil {
// Currently throwing unrecognized token error
//
log.Fatalf("Unable to execute query: %v", err)
return err
}
}
}
return nil
}