示例#1
0
 /**
  * Saves changes made to the identity.
  * 
  * @param CIdentity &$oIdentity Identity object containing data to be saved.
  * 
  * @return bool
  */
 public function updateIdentity(CIdentity $oIdentity)
 {
     $bResult = (bool) $this->oConnection->Execute($this->oCommandCreator->updateIdentityQuery($oIdentity));
     $this->throwDbExceptionIfExist();
     return $bResult;
 }