mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 11:18:50 +08:00
31 lines
506 B
Go
31 lines
506 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/gogf/gf/v2/database/gdb"
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
)
|
|
|
|
func main() {
|
|
//db := g.DB()
|
|
|
|
gdb.AddDefaultConfigNode(gdb.ConfigNode{
|
|
Link: "root:12345678@tcp(127.0.0.1:3306)/test?parseTime=true&loc=Local",
|
|
Type: "mysql",
|
|
Charset: "utf8",
|
|
})
|
|
db, _ := gdb.New()
|
|
|
|
db.SetDebug(true)
|
|
|
|
r, e := db.Model("user").Data(g.Map{
|
|
"create_at": "now()",
|
|
}).Unscoped().Insert()
|
|
if e != nil {
|
|
panic(e)
|
|
}
|
|
if r != nil {
|
|
fmt.Println(r.LastInsertId())
|
|
}
|
|
}
|