-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.go
55 lines (46 loc) · 983 Bytes
/
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
package main
import (
"database/sql"
"fmt"
_ "github.com/go-sql-driver/mysql"
)
type DbConf struct {
Host string
Port int
DbName string
UserName string
Password string
Charset string
}
type Field struct {
Field string
Type string
Null string
Default sql.NullString
}
func descTable(conf *DbConf, table_name string) []Field {
// Open database connection
conn_string := fmt.Sprintf("%s:%s@tcp(%s:%d)/%s", conf.UserName, conf.Password, conf.Host, conf.Port, conf.DbName)
db, err := sql.Open("mysql", conn_string)
if err != nil {
panic(err.Error())
}
defer db.Close()
// Execute the query
rows, err := db.Query("desc " + table_name)
if err != nil {
panic(err.Error())
}
defer rows.Close()
var tmp sql.NullString
tables := []Field{}
for rows.Next() {
f := Field{}
err = rows.Scan(&f.Field, &f.Type, &f.Null, &tmp, &f.Default, &tmp)
if err != nil {
panic(err.Error())
}
tables = append(tables, f)
}
return tables
}