コード例 #1
0
ファイル: LazyModel.php プロジェクト: vitordm/VTRORM
 /**
  * @param $table
  */
 protected function setTableIntoHelpers(&$table)
 {
     $this->Select->setTableName($table);
     $this->Update->setTableName($table);
     $this->Insert->setTableName($table);
     $this->Delete->setTableName($table);
     $this->CommonQuery->setTableName($table);
 }
コード例 #2
0
ファイル: ORMModel.php プロジェクト: vitordm/VTRORM
 /**
  * Reset all objects
  */
 public function reset()
 {
     $this->CommonQuery->reset();
     $this->SelectQuery->reset();
     $this->UpdateQuery->reset();
     $this->InsertQuery->reset();
     $this->DeleteQuery->reset();
 }