-
Notifications
You must be signed in to change notification settings - Fork 1
/
createdatabase_test.go
48 lines (43 loc) · 982 Bytes
/
createdatabase_test.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
package gomysql
import (
"testing"
)
func TestCreate(t *testing.T) {
// schema := `
// CREATE TABLE person (
// first_name varchar(30) not null default '',
// last_name varchar(30) not null default '',
// email varchar(50) not null default ''
// );
// CREATE TABLE place (
// country varchar(50) not null default '',
// city varchar(50) not null default '',
// telcode int not null default 86
// )
// `
conf := Sqlconfig{
UserName: "test",
Password: "123456",
Port: 3306,
Host: "192.168.101.4",
MultiStatements: true,
}
db, err := conf.CreateDB("mytestdatabase")
// db, err := conf.NewDb()
if err != nil {
t.Fatal(err)
}
db.Query("create table aaa(name varchar(20), age int)")
// stat := db.Stats()
// t.Log(stat)
// ndb, err := db.Use("test")
// if err != nil {
// t.Fatal(err)
// }
// // 建表
// _, err = ndb.Query(schema)
// if err != nil {
// t.Fatal(err)
// }
// t.Log("success")
}