Exemplo n.º 1
0
 /**
  * Fetch start to max records. start is at Record 0
  *
  * @param  int $start
  * @param  int $max
  * @return TableDataSet This object.
  * @throws SQLException
  * @throws DataSetException
  */
 public function fetchRecords($p1 = 0, $p2 = null)
 {
     $this->buildSelectString();
     return parent::fetchRecords($p1, $p2);
 }