statement = $statement; $this->statement->setFetchMode(PDO::FETCH_CLASS, $class_name); if ($ctor_args) { $this->statement->setFetchMode( PDO::FETCH_CLASS, $class_name, $ctor_args ); } } /** * * Fetches next row from statement. * */ public function next() { $this->row = $this->statement->fetch(); $this->key ++; } }