36 lines
790 B
Go
36 lines
790 B
Go
package examples
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"strings"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
"github.com/yedf/dtm/common"
|
|
)
|
|
|
|
func RunSqlScript(mysql map[string]string, script string) {
|
|
conf := map[string]string{}
|
|
common.MustRemarshal(mysql, &conf)
|
|
conf["database"] = ""
|
|
db, con := common.DbAlone(conf)
|
|
defer func() { con.Close() }()
|
|
content, err := ioutil.ReadFile(script)
|
|
if err != nil {
|
|
e2p(err)
|
|
}
|
|
sqls := strings.Split(string(content), ";")
|
|
for _, sql := range sqls {
|
|
s := strings.TrimSpace(sql)
|
|
if strings.Contains(strings.ToLower(s), "drop") || s == "" {
|
|
continue
|
|
}
|
|
logrus.Printf("executing: '%s'", s)
|
|
db.Must().Exec(s)
|
|
}
|
|
}
|
|
|
|
func PopulateMysql() {
|
|
common.InitApp(common.GetCurrentPath(), &Config)
|
|
RunSqlScript(Config.Mysql, common.GetCurrentPath()+"/examples.sql")
|
|
}
|