私は巨大なフォームを持っていて、フォームを5つの異なるテーブルに保存したいのですが、データが5つのテーブルすべてに保存されるようにしたいのです。このため、Yii Transationsを使用しようとしていますが、機能しません。以下のコードを見て、バグを見つけてください。
$ParentModel->attributes = $_POST['ParentModel'];
$firstChild->attributes = $_POST['FirstChild'];
$secondChild->attributes = $_POST['SecondChild'];
$thirdChild->attributes = $_POST['ThirdChild'];
$fourthChild->attributes = $_POST['FourthChild'];
if($ParentModel->validate())
{
$transaction = $ParentModel->dbConnection->beginTransaction(); // Transaction begin
try{
$ParentModel->save(); // saving parent model
//parent_id is required for all models
$firstChild->parent_id = $ParentModel->id;
$secondChild->parent_id = $ParentModel->id;
$thirdChild->parent_id = $ParentModel->id;
//$fourthChild->parent_id = $ParentModel->id; I commented this line so that fourth child throw an exception on $fourthChild->save() becuase parent_id is required
$firstChild->save();
$secondChild->save();
$thirdChild->save();
$fourthChild->save(); // fourth child is not saved here, transction should throw exception
$transaction->commit(); // committing
$this->redirect(array('view','id'=>$ParentModel->id)); // Redirecting on user creation
}
catch (Exception $e){
$transaction->rollBack();
}
}
上記のコードは例外をスローせず、検証ルールの失敗により4番目のテーブルのデータが失われます。