object generator progress

This commit is contained in:
Sascha Kühl
2025-11-24 16:26:52 +01:00
parent e67c0f39a3
commit ede5a8c636
17 changed files with 329 additions and 134 deletions
@@ -15,10 +15,6 @@ public:
executable_query table(const table &tab, std::initializer_list<object::attribute> columns);
executable_query table(const query::table &tab, const std::vector<object::attribute> &columns);
template<class Type>
executable_query table(const matador::query::table &tab, const object::repository &schema) {
return this->table(tab, object::attribute_generator::generate<Type>(schema));
}
executable_query schema(const std::string &schema_name);
};