/**
  * @see ODBCResultSetCommon::close()
  */
 function close()
 {
     parent::close();
     $this->recs = null;
     $this->lastPos = -1;
     $this->cacheLobs = false;
 }
 /**
  * @see ResultSet::isAfterLast()
  */
 public function isAfterLast()
 {
     // Force calculation of last record pos.
     if ($this->cursorPos == -1) {
         $this->getRecordCount();
     }
     return parent::isAfterLast();
 }
Пример #3
0
 /**
  * @see ODBCResultSetCommon::close()
  */
 function close()
 {
     parent::close();
     $numRows = 0;
 }