_save() protected method

Saves the specified object in the SQL database.
protected _save ( Turba_Object $object ) : string
$object Turba_Object The object to save
return string The object id, possibly updated.
Example #1
0
 /**
  * Saves the specified object in the SQL database.
  *
  * @param Turba_Object $object  The object to save
  *
  * @return string  The object id, possibly updated.
  * @throws Turba_Exception
  */
 protected function _save(Turba_Object $object)
 {
     return $this->_driver->_save($object);
 }