laravel数据库事务无法工作

mwg9r5ms  于 2021-06-20  发布在  Mysql
关注(0)|答案(1)|浏览(462)

我正在尝试在laravel5.5中设置一个数据库事务,但它似乎不起作用。我使用mysql 5.7.20,工具模式中的所有表都是innodb。我也在运行php7.2.3。
我有这个密码:

DB::beginTransaction();
try {
    // checks whether the users marked for removal are already assigned to the list
    foreach ($removeStudents as $removeStudent) {
        if ($ls->allocatedStudents->find($removeStudent->id) === null) {
            throw new Exception('userNotAllocated', $removeStudent->id);
        } else {
            DB::connection('tools')->table('exercises_list_allocations')
                ->where('user_id', $removeStudent->id)
                ->where('exercises_list_id', $ls->id)
                ->delete();
        }
    }

    // checks whether the users marked for removal are already assigned to the list
    foreach ($addStudents as $addStudent) {
        if ($ls->allocatedStudents->find($addStudent->id) === null) {
            DB::connection('tools')->table('exercises_list_allocations')
               ->insert([
                   'user_id' => $addStudent->id,
                   'exercises_list_id' => $ls->id
               ]);
        } else {
            throw new Exception('userAlreadyAllocated', $addStudent->id);
        }
    }

    DB::commit();
} catch (Exception $e) {
    DB::rollBack();
    return response()->json(
        [
            'error' => $e->getMessage(),
            'user_id' => $e->getCode()
        ], 400
    );
}

它不会回滚事务。如果在某些删除或插入之后发现异常,则不会还原这些异常。
一开始我认为这在mysql中可能是个问题,所以我尝试手动运行以下sql查询:

START TRANSACTION;
DELETE FROM tools.exercises_list_allocations WHERE user_id = 67 AND exercises_list_id=308;
DELETE FROM tools.exercises_list_allocations WHERE user_id = 11479 AND exercises_list_id=308;
INSERT INTO tools.exercises_list_allocations (user_id, exercises_list_id) VALUES (1,308);
INSERT INTO tools.exercises_list_allocations (user_id, exercises_list_id) VALUES (2,308);
INSERT INTO tools.exercises_list_allocations (user_id, exercises_list_id) VALUES (3,308);
ROLLBACK;

并且它回滚所有删除和所有插入(如预期的那样),tools.exercises\u list\u allocations表没有发生任何更改。所以,我排除了数据库服务器的问题。
所以,我觉得应该是php代码的问题。我在网上搜索了与我类似的问题,并尝试了一些报道中的解决方案。
我尝试将db::transaction()方法用于匿名函数,而不是try/catch块,但没有成功。
我尝试使用雄辩的orm而不是db::insert()和db::delete()方法,这两种方法都尝试了带有匿名函数的db::transaction()方法和db::begintransaction()、db::commit()和db::rollback()方法,但都没有成功。
我尝试禁用stric模式并强制引擎在config/database.php中为innodb,但没有成功。
我做错什么了?我需要在单个原子事务中运行所有的删除和插入。

axr492tv

axr492tv1#

如果您(作为我)在应用程序中配置了多个数据库连接,那么您必须在调用事务方法之前选择一个连接,正如jakamaldeniya的评论所建议的,如果您要运行的查询不在默认连接中:

DB::connection('tools')->beginTransaction();
DB::connection('tools')->commit();
DB::connection('tools')->rollBack();

而且效果很好。

相关问题