/**
  * Resets the query object for reuse.
  *
  * @return void
  */
 public function reset()
 {
     $this->hasLimit = false;
     $this->limit = 0;
     $this->offset = 0;
     parent::reset();
 }
Ejemplo n.º 2
0
 /**
  * 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();
 }
Ejemplo n.º 3
0
 /**
  * Resets the query object for reuse.
  *
  * @return void
  */
 public function reset()
 {
     parent::reset();
     $this->fromTables = array();
     $this->rightJoins = array(null);
 }