搜尋

首頁  >  問答  >  主體

php - laravel 為什麼每次只插入一條資料?

DB::beginTransaction();開啟以後,每次都只能插入最開始的一條數據,其它的都被回滾了。
程式碼如下:

try {
     DB::beginTransaction();
     foreach ($rightOrWrongRows as $row) {
     $question = array_combine($rightOrWrongHeader, $row);
     RightOrWrong::create([
         'question' => $question['question'],
         'answer' => $question['answer'],
         'scope' => $question['scope'],
         'degree' => 1,
         'exam_id' => $this->examId,
        ]);
     }
     DB::commit();
     } catch (\Exception $exception) {
        DB::rollBack();
        Log::info($exception->getMessage());
    }

如果關閉事務,那麼就可以插入多條資料

try {
     //DB::beginTransaction();
     foreach ($rightOrWrongRows as $row) {
     $question = array_combine($rightOrWrongHeader, $row);
     RightOrWrong::create([
         'question' => $question['question'],
         'answer' => $question['answer'],
         'scope' => $question['scope'],
         'degree' => 1,
         'exam_id' => $this->examId,
        ]);
     }
     //DB::commit();
     } catch (\Exception $exception) {
        //DB::rollBack();
        Log::info($exception->getMessage());
    }

請各位朋友幫忙解決一下,本人菜鳥。

阿神阿神2704 天前881

全部回覆(2)我來回復

  • 習慣沉默

    習慣沉默2017-06-19 09:09:10

    嘗試

    雷雷

    回覆
    0
  • 世界只因有你

    世界只因有你2017-06-19 09:09:10

    錯誤訊息, 表結構, 圖.

    回覆
    0
  • 取消回覆