new
parent
980c051da3
commit
6511a0be74
@ -1,6 +1,29 @@
|
|||||||
package gtools
|
package gtools
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
|
||||||
|
"github.com/xie1xiao1jun/gorm-tools/data/config"
|
||||||
|
"github.com/xie1xiao1jun/public/mysqldb"
|
||||||
|
)
|
||||||
|
|
||||||
//开始执行
|
//开始执行
|
||||||
func Execute() {
|
func Execute() {
|
||||||
|
orm := mysqldb.OnInitDBOrm(config.GetMysqlConStr())
|
||||||
|
defer orm.OnDestoryDB()
|
||||||
|
|
||||||
|
//获取列名
|
||||||
|
var tables []string
|
||||||
|
rows, err := orm.Raw("show tables").Rows()
|
||||||
|
if err != nil {
|
||||||
|
fmt.Println(err)
|
||||||
|
}
|
||||||
|
defer rows.Close()
|
||||||
|
for rows.Next() {
|
||||||
|
var table string
|
||||||
|
rows.Scan(&table)
|
||||||
|
tables = append(tables, table)
|
||||||
|
}
|
||||||
|
fmt.Println(tables)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue