statement = $statement; $this->statement->setFetchMode(PDO::FETCH_NUM); } /** * * Fetches next row from statement. * */ public function next() { $this->key = false; $this->row = $this->statement->fetch(); if ($this->row !== false) { $this->key = $this->row[0]; $this->row = $this->row[1]; } } }