C++ ORM and Query Builder for PostgreSQL.
Go to file
Tomasz Sowa 5cf55ecce3 added basic support for containers with pointers to models
added to Model:
template<typename ContainerItemType>
void field(const wchar_t * db_field_name, const wchar_t * flat_field_name, std::list<ContainerItemType*> & field_value, const FT & field_type = FT::default_type);

template<typename ContainerItemType>
void field(const wchar_t * db_field_name, const wchar_t * flat_field_name, std::vector<ContainerItemType*> & field_value, const FT & field_type = FT::default_type);
2021-06-17 21:31:58 +02:00
samples namespace PT renamed to pt 2021-05-20 16:25:01 +02:00
src added basic support for containers with pointers to models 2021-06-17 21:31:58 +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