fixed: a parent key was not properly set to simple childs (insert statements)

fixed: a parent key was not set in list of childs (insert statements)




git-svn-id: svn://ttmath.org/publicrep/morm/trunk@1215 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
2019-09-24 17:08:45 +00:00
parent cff4c1518e
commit 334201fe15
8 changed files with 322 additions and 60 deletions

View File

@@ -47,17 +47,27 @@ struct FieldValueHelper
const wchar_t * db_field_name;
const wchar_t * flat_field_name;
bool compare_db_field_name;
bool compare_flat_field_name;
const void * value_object;
const std::type_info * value_type_info;
bool found;
FieldValueHelper()
{
db_field_name = nullptr;
flat_field_name = nullptr;
compare_db_field_name = true;
compare_flat_field_name = true;
value_object = nullptr;
value_type_info = nullptr;
found = false;
}
};