コード例 #1
0
ファイル: ActiveRecord.php プロジェクト: saiber/www
 public function updateRecord(ARUpdateFilter $filter)
 {
     $filter->mergeCondition($this->getRecordIDCondition());
     $updateQuery = "UPDATE " . $this->schema->getName() . $filter->createString();
     $res = $this->executeUpdate($updateQuery);
     $this->reload();
     return $res;
 }