1
0
mirror of synced 2024-12-14 23:26:04 +03:00
doctrine2/manual/codes/Transactions - Unit of work.php

19 lines
412 B
PHP
Raw Normal View History

2006-07-24 01:08:06 +04:00
<?php
$session->beginTransaction();
$user = new User();
$user->name = 'New user';
$user->save();
$user = $session->getTable('User')->find(5);
$user->name = 'Modified user';
$user->save();
$pending = $session->getInserts(); // an array containing one element
$pending = $session->getUpdates(); // an array containing one element
$session->commit(); // all the queries are executed here
?>