function Next() { parent::Next(); if ($this->Result) { $this->NextMysqlRow(); } return !$this->EOF(); }
/** * @access private */ function Rewind() { parent::Rewind(); $this->Rewinding = true; }
/** * @access private */ function Rewind() { if ($this->GetRowCount() > 0) { mysql_data_seek($this->Result, 0); } else { $this->Debug("Rewind failed (bad result)"); } parent::Rewind(); }