1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/manual/docs/Basic Components - Record - Updating records.php
2006-07-23 21:08:06 +00:00

4 lines
281 B
PHP

Updating objects is very easy, you just call the Doctrine_Record::save() method. The other way
(perhaps even easier) is to call Doctrine_Session::flush() which saves all objects. It should be noted though
that flushing is a much heavier operation than just calling save method.