52 lines
964 B
Go
52 lines
964 B
Go
// Package mysql ...
|
|
//
|
|
// Description : mysql ...
|
|
//
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
//
|
|
// Date : 2022-05-16 11:23
|
|
package mysql
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"git.zhangdeman.cn/zhangdeman/mysql/sql2go"
|
|
)
|
|
|
|
var (
|
|
testDBClient *DBClient
|
|
)
|
|
|
|
// getClient 获取数据库连接
|
|
//
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
//
|
|
// Date : 11:24 2022/5/16
|
|
func init() {
|
|
cfg := &DBConfig{
|
|
Host: "localhost",
|
|
Port: 3306,
|
|
Database: "gateway",
|
|
Username: "root",
|
|
Password: "zhangdeman",
|
|
Charset: "utf8mb4",
|
|
Connection: Connection{
|
|
MaxOpen: 100,
|
|
MaxIdle: 100,
|
|
},
|
|
}
|
|
testDBClient, _ = NewDBClient(cfg, cfg, nil, nil, nil)
|
|
}
|
|
|
|
// TestGetCreateTableSQL 测试简表sql
|
|
//
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
//
|
|
// Date : 11:24 2022/5/16
|
|
func TestGetCreateTableSQL(t *testing.T) {
|
|
sys := &SystemDao{}
|
|
sql, _ := sys.GetCreateTableSQL(testDBClient.GetMaster(nil), "app")
|
|
fmt.Println(sql2go.GenerateDao(sql, "aaa"))
|
|
}
|