prefetchAll() абстрактный публичный Метод

If the data store does not support cursors, then fetch all data and return array. loadCurrent will automatically array_shift one record on each call.
abstract public prefetchAll ( $model )
Пример #1
0
 public function rewind()
 {
     $this->unload();
     $this->_cursor = $this->controller->prefetchAll($this);
     $this->next();
 }