dsxrq28228 2016-08-17 16:22
浏览 36
已采纳

Laravel 5.1:如何执行一系列交易?

I have the follow relationships: A Student has a "one-to-one" relationship with a Person. A Person has a "many-to-many" relationship with Address.

I want to persist the data: first create the Person, after create the Addresses and then create the Student.

But I want to rollback the transations if any error occur during the persistence in any of these tables. Ex.: If I save the Person and the Addresses, and the Student fails, I want to rollback everything.

How to handle this with Eloquent?

Thanks.

  • 写回答

1条回答 默认 最新

  • doutangqi4444 2016-08-17 16:38
    关注

    Laravel provides vary simple way to handle this kind of situation.

    DB::transaction(function () {
        //all your codes 
    });
    

    From laravel Documentation :

    To run a set of operations within a database transaction, you may use the transaction method on the DB facade. If an exception is thrown within the transaction Closure, the transaction will automatically be rolled back. If the Closure executes successfully, the transaction will automatically be committed. You don't need to worry about manually rolling back or committing while using the transaction method.

    Also if you want to do it manually , you can do it using

        DB::beginTransaction();
        //your codes
        DB::commit();
    

    To learn more about transactions, read official document Here

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记