some work in morm

- support for fetching rows from db
- support for inserting/updating rows



git-svn-id: svn://ttmath.org/publicrep/morm/trunk@1081 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
2018-04-16 22:46:25 +00:00
parent 09f31b2803
commit 72b2622d08
17 changed files with 965 additions and 319 deletions

View File

@@ -146,8 +146,40 @@ void Model::update()
void Model::clear()
{
if( model_connector )
{
model_connector->clear_values(*this);
}
morm_object_exists = false;
}
void Model::before_select()
{
}
void Model::before_insert()
{
}
void Model::before_update()
{
}
void Model::after_select()
{
}
void Model::after_insert()
{
}
void Model::after_update()
{
}
} // namespace