0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

laravelで1トランザクションで複数クエリを実行する

Last updated at Posted at 2019-08-06

①transactionメソッドを使用する。

・ポイント
例外がスローされると、自動的にロールバックされる

DB::transaction(function() {
    // クエリ発行
}

(例)

    public function userUpdate ($request, $userId, $storeId) {
        $postData = $request->post();
        $result = DB::transaction(function() use ($postData, $userId, $storeId) {
            DB::table('users')->where('id', $userId)->update($postData['users']);
            DB::table('stores')->where('id', $storeId)->update($postData['stores']);
            return true;
        });
        return $result;
    }

②beginTransactionメソッドを使用する。

    DB::beginTransaction();
    try {
        // クエリ発行
        DB::commit();
    } catch (\Exception $e) {
        DB::rollBack();
    }

(例)

    public function userUpdate($request, $userId, $storeId)
    {
        $postData = $request->post();
        DB::beginTransaction();
        try {
            DB::table('users')->where('id', $userId)->update($postData['users']);
            DB::table('stores')->where('id', $storeId)->update($postData['stores']);
            DB::commit();
        } catch (\Exception $e) {
            DB::rollBack();
        }
        return true;
    }
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?