douba6365 2016-01-20 15:28 采纳率: 100%
浏览 128
已采纳

Laravel DB ::事务异常PDO没有活动事务

i have the following code:

$new_models = DB::transaction(function () use ($supplier, $address, $addressDetail) {            
        $new_supplier = $this->setNewSupplier($supplier);
        $new_address = $this->setNewAddress($address);           
        $new_addressDetail = $this->setNewAddressDetail($addressDetail,$new_address->id);           
        $this->syncSupplierAddress($new_supplier->id,$new_address->id);
        $this->updateControlAp($new_supplier->supplier_id);   
        return [$new_supplier, $new_address, $new_addressDetail];
    });

The set methods are basically creating the models object with save() at the end; Now this works perfectly fine if 2nd...nth fails BUT NOT if the first one fails. If $this->setNewSupplier($supplier); fails than i get

"PDOException in Connection.php line 541:
There is no active transaction"

Am i doing something wrong here ? Also if i comment $this->rollBack(); from the catch in vendor Connection.php it actually gives me the SQL error. Important part here is that this isn't working only if first save() fails

PS. I am using PostgreSQL not MySQL but i don't think its related

  • 写回答

1条回答 默认 最新

  • dongpan8928 2016-01-20 16:37
    关注

    There are different ways to make transactions in Laravel, another one could be this:

    ...
    $new_models = [];
    try {
      DB::beginTransaction();
    
      $new_supplier = $this->setNewSupplier($supplier);
      $new_address = $this->setNewAddress($address);           
      $new_addressDetail = $this->setNewAddressDetail($addressDetail,$new_address->id);           
      $this->syncSupplierAddress($new_supplier->id,$new_address->id);
      $this->updateControlAp($new_supplier->supplier_id);   
      $new_models = [$new_supplier, $new_address, $new_addressDetail];
    
      DB::commit();
    } catch(\Exception $e) {
       DB::rollback();
       // Handle Error
    }
    ...
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 使用C#,asp.net读取Excel文件并保存到Oracle数据库
  • ¥15 C# datagridview 单元格显示进度及值
  • ¥15 thinkphp6配合social login单点登录问题
  • ¥15 HFSS 中的 H 场图与 MATLAB 中绘制的 B1 场 部分对应不上
  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配