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