About Laravel Transactions

Source: Internet
Author: User
        DB::beginTransaction();        foreach($checkArr[0] as $v){            $id = explode('-',$v)[0];            $rank = explode('-',$v)[1] != '' ? explode('-',$v)[1] : 5;            if(index_friendlink::where('id','=',$id)->pluck('online') == 1){                $updrank = index_friendlink::find($id);                $updrank -> rank = $rank;                $updrank -> save();            }        }        $ret = index_friendlink::where('online','=','1')->get();        foreach($ret as $v) {            $retRank[] = $v->rank;        }        if (count($retRank) != count(array_unique($retRank))) {            DB::rollback();            echo '2';            exit;        }        DB::commit();                        怎么回滚不了,第一次使用laravel,求大神解答,数据库已改成innodb

Reply content:

        DB::beginTransaction();        foreach($checkArr[0] as $v){            $id = explode('-',$v)[0];            $rank = explode('-',$v)[1] != '' ? explode('-',$v)[1] : 5;            if(index_friendlink::where('id','=',$id)->pluck('online') == 1){                $updrank = index_friendlink::find($id);                $updrank -> rank = $rank;                $updrank -> save();            }        }        $ret = index_friendlink::where('online','=','1')->get();        foreach($ret as $v) {            $retRank[] = $v->rank;        }        if (count($retRank) != count(array_unique($retRank))) {            DB::rollback();            echo '2';            exit;        }        DB::commit();                        怎么回滚不了,第一次使用laravel,求大神解答,数据库已改成innodb

Your rollback condition is to use PHP to judge, and the transaction should be separated from PHP, MySQL can be directly implemented, such as delete or insert failed or did not go to commit rollback. Check this out.

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.