Laravel 7.x 数据库事务自动提交,没有 commit() 命令
Posted
技术标签:
【中文标题】Laravel 7.x 数据库事务自动提交,没有 commit() 命令【英文标题】:Laravel 7.x DB Transaction auto commit without commit() command 【发布时间】:2020-09-29 09:51:55 【问题描述】:我有一个使用查询生成器将记录插入数据库的函数。 我想手动使用事务。
但是记录被插入数据库而不调用commit()
函数。
我不知道为什么;我想让插入函数等我调用commit()
函数。
在我的脚本中有 2 个命令:
插入products
(正确的命令)
插入product_categories
(无效命令 - 我设置字段prd_idd
而不是prd_id
)
在这种情况下,我希望命令 #1 在 #2 失败时不会插入到数据库中。
public function create($params)
DB::beginTransaction();
try
DB::table('products')->insert($params);
DB::table('prd_categories')->insert(['prd_idd'=> 1, 'category_id' => 1]);
catch (\Exception $ex)
echo $ex->getMessage();
DB::rollback();
die("End");
【问题讨论】:
【参考方案1】:要在数据库transaction
中运行一组操作,您可以使用DB
外观上的事务方法。如果在事务Closure
中抛出异常,事务将自动回滚。如果Closure
执行成功,事务将自动提交。在使用transaction
方法时,您无需担心手动回滚或提交:
DB::transaction(function ()
DB::table('product')->insert(...);
DB::table('prd_categories')->insert(...);
);
【讨论】:
嗨 Hirapara,正如你所建议的,我把它们放在了块中:。 $this->params = $params; DB::transaction(function () DB::table('products')->insert($this->params); DB::table('prd_categories')->insert(['prd_idd'=> 1, 'category_id' => 1]); );结果如下: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'prd_idd' in 'field list' (SQL: insert intoprd_categories
(prd_idd
, category_id
) values (1, 1))但它通过命令 #1 为产品创建了新记录。应该是自动回滚,但不是,不知道为什么?以上是关于Laravel 7.x 数据库事务自动提交,没有 commit() 命令的主要内容,如果未能解决你的问题,请参考以下文章
jdbcTemplate必须使用spring事务吗 否则不能提交