1 Star 0 Fork 0

c./goframe

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
gdb_model_transaction.go 973 Bytes
一键复制 编辑 原始数据 按行查看 历史
// 版权归GoFrame作者(https://goframe.org)所有。保留所有权利。
//
// 本源代码形式受MIT许可证条款约束。
// 如果未随本文件一同分发MIT许可证副本,
// 您可以在https://github.com/gogf/gf处获取。
// md5:a9832f33b234e3f3
package db类
import (
"context"
)
// X事务 包装了使用函数 `f` 执行的事务逻辑。
// 如果函数 `f` 返回非空错误,它将回滚事务并返回该错误。如果函数 `f` 返回 nil,它将提交事务并返回 nil。
//
// 注意,在函数 `f` 中不应手动提交或回滚事务,因为这些操作将由这个函数自动处理。
// md5:8906440d4dbbef1f
func (m *X结构_Model) X事务(上下文 context.Context, 回调函数 func(上下文 context.Context, tx TX) error) (错误 error) {
if 上下文 == nil {
上下文 = m.X取上下文对象()
}
if m.tx != nil {
return m.tx.X事务(上下文, 回调函数)
}
return m.db.X事务(上下文, 回调函数)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/go_888/goframe.git
git@gitee.com:go_888/goframe.git
go_888
goframe
goframe
782a3f7170cf

搜索帮助