Skip to content
  • Hugo Beauzée-Luyssen's avatar
    Add request pagination support · 5cf768d4
    Hugo Beauzée-Luyssen authored
    All request that could return more than one row (ie. all member function
    that used to return an std::vector<std::shared_ptr<T>> will now return a std::unique_ptr<Query<T>>
    The query object can return:
    - The amount of row represented by that query (->count())
    - A subset of the rows (->items(count, offset))
    - All rows (->all())
    5cf768d4