I am having trouble with MDB2_Iterator
, this is an old project which is being moved to a new server.
The function in MDB2_Iterator
for count()
is below:
public function count()
{
if ($this->result) {
return $this->result->numRows();
}
return false;
}
$this->result
is a MySql Resource and so numRows()
fails.
Error:
Fatal error: Call to a member function numRows() on a non-object in /usr/share/pear/MDB2/Iterator.php on line 246
Anyone know how I can fix this?
Thanks.