Пакетное обновление Phalcon ORM

Простые вопросы, если вы пользователи Phalcon .. вы знаете, что я хочу сделать.

$trueFind = ProductOrderTransaction::find(["conditions"=>"protPthdId = ".$id]);
$trueFind->setTransaction($transaction);
$trueFind->protMomsId = $monitId;
$trueFind->protMomsName = $monitName;
if (!$trueFind->update()) {
foreach ($trueFind->getMessages() as $message) {
$this->flash->error($message);
$transaction->rollback($message->getMessage());
}
}

Я просто хочу сделать этот запрос в Orm Phalcon:

UPDATE product_order_transaction set protMomsId = '$monitId' , protMomsName = '$monitName' WHERE protPthdId='$id'

сбой -> откат .. успех -> коммит.

1

Решение

Что-то вроде этого?

$items = ProductOrderTransaction::find([
'conditions' => 'protPthdId = :id:',
'bind' => ['id' => $id]
]);

foreach($items as $item){
$this->db->begin();

$item->protMomsId = $monitId;
$item->protMomsName = $monitName;
$update = $item->update();

if(!$update){
$this->db->rollback();
continue;
}
$this->db->commit();
}
2

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]