Skip to content
neemah edited this page Apr 18, 2011 · 18 revisions

Data Access Objects

StorableDAO

StorableDAO::add()

Добавление объекта в БД

<?php
$myObject =
    MyObject::create()->
        setName('John')->
        setSurname('Doe');

MyObject::dao()->add($myObject)
?>

StorableDAO::save()

StorableDAO::merge()

StorableDAO::unite()

Clone this wiki locally