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

15 lines
238 B
Go

package main
import (
"context"
"github.com/gogf/gf/v2/frame/g"
)
func main() {
ctx := context.WithValue(context.Background(), "RequestId", "123456789")
_, err := g.DB().Ctx(ctx).Query("SELECT 1")
if err != nil {
panic(err)
}
}