C++ ORM and Query Builder for PostgreSQL.
Go to file
Tomasz Sowa f7490594ad changed the way how the table name is set in a Model - added prepare_table() method
removed from Model:
virtual void table_name(PT::TextStream & stream);

added to Model:
virtual void prepare_table();
virtual void table(const wchar_t * table_name);
virtual void table(const wchar_t * schema_name, const wchar_t * table_name);
2021-03-11 12:22:37 +01:00
samples changed the way how the table name is set in a Model - added prepare_table() method 2021-03-11 12:22:37 +01:00
src changed the way how the table name is set in a Model - added prepare_table() method 2021-03-11 12:22:37 +01:00
.gitignore Added flag has_primary_key_set to Model 2021-03-09 18:10:34 +01:00