You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 8, 2020. It is now read-only.
ZF2's Paginator does not currently work with DB2 because DB2 does have the Limit or Offset commands. The Paginator would need to have DB2 specific adaptions so that any ZF2 user could use standard commands.
The text was updated successfully, but these errors were encountered:
Here's a sample:
SELECT code, name, address
FROM (
SELECT row_number() OVER ( ORDER BY code ) AS rid, code, name, address
FROM contacts
WHERE name LIKE '%Bob%'
) AS t
WHERE t.rid BETWEEN 20 AND 25
FETCH FIRST 6 ONLY OPTIMIZE FOR 6 ROWS;
The last part,
FETCH FIRST 6 ONLY OPTIMIZE FOR 6 ROWS,
is somewhat optional, for performance.
ZF2's Paginator does not currently work with DB2 because DB2 does have the Limit or Offset commands. The Paginator would need to have DB2 specific adaptions so that any ZF2 user could use standard commands.
The text was updated successfully, but these errors were encountered: