方法操作

方法操作用于原生SQL执行,相对链式操作更偏底层操作一些,在ORM链式操作执行不了太过于复杂的SQL操作时,可以交给方法操作来处理。

接口文档: https://pkg.go.dev/github.com/gogf/gf/v2/database/gdb

常用方法:

本文档的方法列表可能滞后于于代码,详细的方法列表请查看接口文档,以下方法仅供参考。

  1. // SQL操作方法,返回原生的标准库sql对象
  2. Query(ctx context.Context, query string, args ...interface{}) (*sql.Rows, error)
  3. Exec(ctx context.Context, query string, args ...interface{}) (sql.Result, error)
  4. Prepare(ctx context.Context, query string) (*sql.Stmt, error)
  5. // 数据表记录查询:
  6. // 查询单条记录、查询多条记录、获取记录对象、查询单个字段值(链式操作同理)
  7. GetAll(ctx context.Context, sql string, args ...interface{}) (Result, error)
  8. GetOne(ctx context.Context, sql string, args ...interface{}) (Record, error)
  9. GetValue(ctx context.Context, sql string, args ...interface{}) (Value, error)
  10. GetArray(ctx context.Context, sql string, args ...interface{}) ([]Value, error)
  11. GetCount(ctx context.Context, sql string, args ...interface{}) (int, error)
  12. GetScan(ctx context.Context, objPointer interface{}, sql string, args ...interface{}) error
  13. // 数据单条操作
  14. Insert(ctx context.Context, table string, data interface{}, batch...int) (sql.Result, error)
  15. Replace(ctx context.Context, table string, data interface{}, batch...int) (sql.Result, error)
  16. Save(ctx context.Context, table string, data interface{}, batch...int) (sql.Result, error)
  17. // 数据修改/删除
  18. Update(ctx context.Context, table string, data interface{}, condition interface{}, args ...interface{}) (sql.Result, error)
  19. Delete(ctx context.Context, table string, condition interface{}, args ...interface{}) (sql.Result, error)

简要说明:

  1. Query是原始的数据查询方法,返回的是原生的标准库的结果集对象,需要自行解析。推荐使用Get*方法,会对结果自动做解析。
  2. Exec方法用于写入/更新的SQL的操作。
  3. 在执行数据查询时推荐使用Get*系列查询方法。
  4. Insert/Replace/Save方法中的data参数支持的数据类型为:string/map/slice/struct/*struct,当传递为slice类型时,自动识别为批量操作,此时batch参数有效。

操作示例

1. ORM对象

  1. // 获取默认配置的数据库对象(配置名称为"default")
  2. db := g.DB()
  3. // 获取配置分组名称为"user-center"的数据库对象
  4. db := g.DB("user-center")
  5. // 使用原生单例管理方法获取数据库对象单例
  6. db, err := gdb.Instance()
  7. db, err := gdb.Instance("user-center")
  8. // 注意不用的时候不需要使用Close方法关闭数据库连接(并且gdb也没有提供Close方法),
  9. // 数据库引擎底层采用了链接池设计,当链接不再使用时会自动关闭

2. 数据写入

  1. r, err := db.Insert(ctx, "user", gdb.Map {
  2. "name": "john",
  3. })

3. 数据查询(列表)

  1. list, err := db.GetAll(ctx, "select * from user limit 2")
  2. list, err := db.GetAll(ctx, "select * from user where age > ? and name like ?", g.Slice{18, "%john%"})
  3. list, err := db.GetAll(ctx, "select * from user where status=?", g.Slice{1})

4. 数据查询(单条)

  1. one, err := db.GetOne(ctx, "select * from user limit 2")
  2. one, err := db.GetOne(ctx, "select * from user where uid=1000")
  3. one, err := db.GetOne(ctx, "select * from user where uid=?", 1000)
  4. one, err := db.GetOne(ctx, "select * from user where uid=?", g.Slice{1000})

5. 数据保存

  1. r, err := db.Save(ctx, "user", gdb.Map {
  2. "uid" : 1,
  3. "name" : "john",
  4. })

6. 批量操作

其中batch参数用于指定批量操作中分批写入条数数量(默认是10)。

  1. _, err := db.Insert(ctx, "user", gdb.List {
  2. {"name": "john_1"},
  3. {"name": "john_2"},
  4. {"name": "john_3"},
  5. {"name": "john_4"},
  6. }, 10)

7. 数据更新/删除

  1. // db.Update/db.Delete 同理
  2. // UPDATE `user` SET `name`='john' WHERE `uid`=10000
  3. r, err := db.Update(ctx, "user", gdb.Map {"name": "john"}, "uid=?", 10000)
  4. // UPDATE `user` SET `name`='john' WHERE `uid`=10000
  5. r, err := db.Update(ctx, "user", "name='john'", "uid=10000")
  6. // UPDATE `user` SET `name`='john' WHERE `uid`=10000
  7. r, err := db.Update(ctx, "user", "name=?", "uid=?", "john", 10000)

注意,参数域支持并建议使用预处理模式(使用?占位符)进行输入,避免SQL注入风险。