zoukankan      html  css  js  c++  java
  • TP5 多个表使用事务,千万不要用助手方法,不然你想哭

    这两天一直再纳闷,明明建立了事务,为什么 throw new Exception 之后事务一直都没有效!

    一开始以为是 throw new Exception 的问题,百度查了一些资料说使用 RuntimeException ,试了之后还是不行!

    再去检查数据库引擎是不是innodb,确认了几次,都发现没错!可是事务愣是没效果。。。

    换种方式百度一下:tp5多表事务发现,人家全是用模型。然后自己再试了一下,终于可以了。。。

    错误方法:

            $data = [
                'name' => "123",
                'value' => "1",
            ];
    
            $data1 = [
                'name' => "234",
                'value' => "23",
            ];
    
            $data2 = [
                'name' => "456",
                'value' => "4",
            ];
    
            db()->startTrans();
            try{
    
                $res = db("Test")->insertGetId($data);
                $res1 = db("Test1")->insertGetId($data1);
                $res2 = db("Test")->insertGetId($data2);
                if($res2){
                    throw new Exception("1");
                }
    
                db()->commit();
            }catch (Exception $e){
                db()->rollback();
                echo $e->getLine().$e->getMessage();
            }
    

      

    正确方法(一定要先建模型,空的模型也可以):

            $data = [
                'name' => "123",
                'value' => "1",
            ];
    
            $data1 = [
                'name' => "234",
                'value' => "23",
            ];
    
            $data2 = [
                'name' => "456",
                'value' => "4",
            ];
    
            Db::startTrans();
            try{
    
                $res = model("Test")->insertGetId($data);
                $res1 = model("Test1")->insertGetId($data1);
                $res2 = model("Test")->insertGetId($data2);
                if($res2){
                    throw new Exception("1");
                }
    
                Db::commit();
            }catch (Exception $e){
                Db::rollback();
                return $this->getReturnResult($e->getLine().$e->getMessage(),500);
            }
    

      

    附上两个模型:

    <?php
    
    
    namespace appapimodel;
    
    use thinkModel;
    
    class Test1 extends Model
    {
    
    }
    

      

    <?php
    
    namespace appapimodel;
    
    use thinkModel;
    
    class Test extends Model
    {
    
    }
    

      

  • 相关阅读:
    uva 12034 Race
    计算机基础之计算机硬件软件数据结构
    Project Perfect让Swift在server端跑起来-Perfect in Visual Studio Code (四)
    关于自己定义转场动画,我都告诉你。
    Shell编程入门
    CODEVS 1029 遍历问题
    【VBA研究】工作表自己主动筛选模式检測
    卸载MySQL 5.0
    操作系统(二)进程控制
    前端面试题
  • 原文地址:https://www.cnblogs.com/zwb121/p/11587229.html
Copyright © 2011-2022 走看看