Using transaction in a loop in Yii
Asked Answered
R

1

7

I have an array of active records and want to change some field of them with a loop in this manner:

$error = false;
foreach ($items as $item) {
    $item->is_paid = self::PENDING;
    $error = $error || !$item->save();
}
return $error;

What I want to do is to change the is_paid property for all of this items. If on fails, roll back the others. How can I use transaction to solve this problem?

Risser answered 3/4, 2013 at 15:49 Comment(0)
F
18

By a brief look here, I was able to find the transaction management in yii, something like the following should work for you:

$transaction = Yii::app()->db->beginTransaction();
try {
    foreach ($items as $item) {
        $item->is_paid = self::PENDING;
        $item->save();
    }
    $transaction->commit();
    // actions to do on success (redirect, alert, etc.)
} catch (Exception $e) {
    $transaction->rollBack();
    // other actions to perform on fail (redirect, alert, etc.)
} 
Foundation answered 3/4, 2013 at 16:7 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.