/** * Resets the query object for reuse. * * @return void */ public function reset() { $this->hasLimit = false; $this->limit = 0; $this->offset = 0; parent::reset(); }
/** * Resets the query object for reuse. * * @return void */ public function reset() { $this->hasLimit = false; $this->limit = 0; $this->offset = 0; $this->orderColumns = array(); parent::reset(); }
/** * Resets the query object for reuse. * * @return void */ public function reset() { parent::reset(); $this->fromTables = array(); $this->rightJoins = array(null); }