resetWhere() public method

Deletes all the WHERE conditions in the current command.
public resetWhere ( ) : true
return true
コード例 #1
0
ファイル: Select.php プロジェクト: doctrine/orientdb-odm
 /**
  * Deletes all the WHERE and BETWEEN conditions in the current SELECT.
  *
  * @return true
  */
 public function resetWhere()
 {
     parent::resetWhere();
     $this->clearToken('Between');
     return true;
 }