C++ ORM and Query Builder for PostgreSQL.
Go to file
Tomasz Sowa 2ad6c8c258 changed the way how to quote schemas, tables and field names,
added escaping table names in insert/update/remove

removed methods from BaseExpression:
virtual void before_short_field_name();
virtual void after_short_field_name();
virtual void before_first_part_long_field_name();
virtual void after_first_part_long_field_name();
virtual void before_second_part_long_field_name();
virtual void after_second_part_long_field_name();

added methods to BaseExpression:
virtual void schema_table_separator();
virtual void table_field_separator();
virtual void before_schema_name();
virtual void after_schema_name();
virtual void before_table_name();
virtual void after_table_name();
virtual void before_field_name();
virtual void after_field_name();
2021-05-13 02:32:03 +02:00
samples make depend 2021-04-09 17:50:23 +02:00
src changed the way how to quote schemas, tables and field names, 2021-05-13 02:32:03 +02:00
.gitignore Added flag has_primary_key_set to Model 2021-03-09 18:10:34 +01:00