mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 11:18:50 +08:00
25 lines
292 B
Go
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())
|
|
}
|
|
}
|