morm/src
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
..
Makefile add global Makefile 2022-06-26 06:15:19 +02:00
Makefile.dep add possibility of calculating how many rows there were before LIMIT was applied 2022-07-11 17:48:13 +02:00
baseexpression.cpp add possibility of calculating how many rows there were before LIMIT was applied 2022-07-11 17:48:13 +02:00
baseexpression.h add possibility of calculating how many rows there were before LIMIT was applied 2022-07-11 17:48:13 +02:00
baseobjectwrapper.h change headerfile_morm_* macros to headerfile_morm_src_* 2022-06-30 13:28:38 +02:00
clearer.cpp add FT::numeric to be applied on string types 2022-05-16 13:42:51 +02:00
clearer.h change headerfile_morm_* macros to headerfile_morm_src_* 2022-06-30 13:28:38 +02:00
cursor.h add possibility of calculating how many rows there were before LIMIT was applied 2022-07-11 17:48:13 +02:00
cursorhelper.h add possibility of calculating how many rows there were before LIMIT was applied 2022-07-11 17:48:13 +02:00
dbconnector.cpp add possibility of calculating how many rows there were before LIMIT was applied 2022-07-11 17:48:13 +02:00
dbconnector.h change headerfile_morm_* macros to headerfile_morm_src_* 2022-06-30 13:28:38 +02:00
dbexpression.cpp add possibility of calculating how many rows there were before LIMIT was applied 2022-07-11 17:48:13 +02:00
dbexpression.h add possibility of calculating how many rows there were before LIMIT was applied 2022-07-11 17:48:13 +02:00
fieldvaluehelper.h change headerfile_morm_* macros to headerfile_morm_src_* 2022-06-30 13:28:38 +02:00
finder.h add possibility of calculating how many rows there were before LIMIT was applied 2022-07-11 17:48:13 +02:00
finderhelper.h change headerfile_morm_* macros to headerfile_morm_src_* 2022-06-30 13:28:38 +02:00
flatconnector.cpp changed the way how we get a specific field value - now we do not use expressions (BaseExpression), to get the raw value we don't need an expression object: 2021-06-16 14:01:07 +02:00
flatconnector.h change headerfile_morm_* macros to headerfile_morm_src_* 2022-06-30 13:28:38 +02:00
flatexpression.cpp namespace PT renamed to pt 2021-05-20 16:25:01 +02:00
flatexpression.h change headerfile_morm_* macros to headerfile_morm_src_* 2022-06-30 13:28:38 +02:00
ft.h add possibility of calculating how many rows there were before LIMIT was applied 2022-07-11 17:48:13 +02:00
jsonconnector.cpp reorganizing class hierarchy 2018-03-23 19:26:57 +00:00
jsonconnector.h change headerfile_morm_* macros to headerfile_morm_src_* 2022-06-30 13:28:38 +02:00
jsonexpression.cpp fix: put 'char' type directly to the output stream 2022-02-08 12:47:34 +01:00
jsonexpression.h change headerfile_morm_* macros to headerfile_morm_src_* 2022-06-30 13:28:38 +02:00
model.cpp add possibility of calculating how many rows there were before LIMIT was applied 2022-07-11 17:48:13 +02:00
model.h add possibility of calculating how many rows there were before LIMIT was applied 2022-07-11 17:48:13 +02:00
modelconnector.cpp namespace PT renamed to pt 2021-05-20 16:25:01 +02:00
modelconnector.h change headerfile_morm_* macros to headerfile_morm_src_* 2022-06-30 13:28:38 +02:00
modelcontainerwrapper.h change headerfile_morm_* macros to headerfile_morm_src_* 2022-06-30 13:28:38 +02:00
modeldata.h change headerfile_morm_* macros to headerfile_morm_src_* 2022-06-30 13:28:38 +02:00
modelenv.h add possibility of calculating how many rows there were before LIMIT was applied 2022-07-11 17:48:13 +02:00
morm.h change headerfile_morm_* macros to headerfile_morm_src_* 2022-06-30 13:28:38 +02:00
morm_types.h change headerfile_morm_* macros to headerfile_morm_src_* 2022-06-30 13:28:38 +02:00
postgresqlconnector.cpp add support for nested transactions 2022-05-26 20:14:14 +02:00
postgresqlconnector.h change headerfile_morm_* macros to headerfile_morm_src_* 2022-06-30 13:28:38 +02:00
postgresqlexpression.cpp add possibility of calculating how many rows there were before LIMIT was applied 2022-07-11 17:48:13 +02:00
postgresqlexpression.h change headerfile_morm_* macros to headerfile_morm_src_* 2022-06-30 13:28:38 +02:00
postgresqlqueryresult.cpp namespace PT renamed to pt 2021-05-20 16:25:01 +02:00
postgresqlqueryresult.h change headerfile_morm_* macros to headerfile_morm_src_* 2022-06-30 13:28:38 +02:00
queryresult.cpp updated to the new pikotools api: changed utf8 functions PascalCase to snake_case 2021-05-21 00:32:29 +02:00
queryresult.h change headerfile_morm_* macros to headerfile_morm_src_* 2022-06-30 13:28:38 +02:00
select.h add possibility of calculating how many rows there were before LIMIT was applied 2022-07-11 17:48:13 +02:00
spacewrapper.h change headerfile_morm_* macros to headerfile_morm_src_* 2022-06-30 13:28:38 +02:00
transaction.cpp do Transaction::commit/rollback only on the same group for which a begin was called 2022-05-27 00:06:56 +02:00
transaction.h change headerfile_morm_* macros to headerfile_morm_src_* 2022-06-30 13:28:38 +02:00
version.h change headerfile_morm_* macros to headerfile_morm_src_* 2022-06-30 13:28:38 +02:00
wrapper.h change headerfile_morm_* macros to headerfile_morm_src_* 2022-06-30 13:28:38 +02:00