1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 11:18:50 +08:00
2021-10-11 21:41:56 +08:00

25 lines
292 B
Go

package main
import (
"fmt"
"github.com/gogf/gf/v2/os/gctx"
"github.com/gogf/gf/v2/frame/g"
)
func main() {
var (
db = g.DB()
ctx = gctx.New()
)
db.SetDebug(true)
r, e := db.Ctx(ctx).Model("test").All()
if e != nil {
panic(e)
}
if r != nil {
fmt.Println(r.List())
}
}