fix for pgsql >= 7.3 need separate LIMIT and OFFSET clause, works with 7.2.x too

This commit is contained in:
Ralf Becker 2003-03-13 17:44:53 +00:00
parent c7e95eabee
commit b4f4f7c938

View File

@ -232,7 +232,7 @@
}
else
{
$Query_String .= ' LIMIT ' . $num_rows . ',' . $offset;
$Query_String .= ' LIMIT ' . $num_rows . ' OFFSET ' . $offset;
}
if($this->Debug)