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);
This commit is contained in:
2021-03-11 12:22:37 +01:00
parent fcf1d28b18
commit f7490594ad
18 changed files with 193 additions and 182 deletions

View File

@@ -87,10 +87,9 @@ public:
field(L"language_id", L"language", language, FT::foreign_key);
}
void table_name(PT::TextStream & stream)
void prepare_table()
{
// schema.table_name or just table_name
stream << "public.attachment";
table(L"public", L"attachment");
}
void after_select()