FIX: PostgreSQLQuery::seek() failed to return a row

This commit is contained in:
Loz Calver 2017-01-12 16:19:27 +00:00
parent d3d2875012
commit 72ca91981f

View File

@ -36,7 +36,8 @@ class PostgreSQLQuery extends Query
public function seek($row)
{
return pg_result_seek($this->handle, $row);
pg_result_seek($this->handle, $row);
return pg_fetch_row($this->handle);
}
public function numRecords()