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 was archived by the owner on Apr 4, 2024. It is now read-only.
Thanks for a good database adapter for peewee. Just starting to like this, then I find out paging is still in your TODO list. Are you planning to add it sometime soon?
The text was updated successfully, but these errors were encountered:
# TODO: implement limit and offset properly, we can use:
# SELECT *
# FROM (SELECT ROW_NUMBER() OVER(ORDER BY id) RowNr, id FROM tbl) t
# WHERE RowNr BETWEEN 10 AND 20
I only ever used this with older version of MSSQL (2005 and 2008) and the pagination looked very frustrating to implement. It looks simple enough to implement in 2012+ but I don't use MSSQL anymore so hard to find time to code it.
Thanks for a good database adapter for peewee. Just starting to like this, then I find out paging is still in your TODO list. Are you planning to add it sometime soon?
The text was updated successfully, but these errors were encountered: