C++ ORM and Query Builder for PostgreSQL.
Go to file
Tomasz Sowa 43dfbd5d5a add possibility of calculating how many rows there were before LIMIT was applied
The Finder has get_rows_counter() method which returns how many rows there were
before LIMIT clause was applied. The select(...) method should be called with
Select::with_rows_counter flag in such a case.

while here:
- change the semantic of Finder, now the select(...) method takes a morm::Select flags,
  and we have such flags:
  - Select::no_auto_generated_columns - do not generate columns from models
  - with_rows_counter - add an additional column for the rows counter
- remove Finder::prepare_to_select() - now use select(...) with no_auto_generated_columns flag
2022-07-11 17:48:13 +02:00
samples add possibility of calculating how many rows there were before LIMIT was applied 2022-07-11 17:48:13 +02:00
src add possibility of calculating how many rows there were before LIMIT was applied 2022-07-11 17:48:13 +02:00
.editorconfig added .editorconfig file 2021-06-16 14:21:34 +02:00
.gitignore Added flag has_primary_key_set to Model 2021-03-09 18:10:34 +01:00
LICENSE add LICENSE file 2022-07-03 11:01:14 +02:00
Makefile add global Makefile 2022-06-26 06:15:19 +02:00