const CHILD *children,
uint32_t nChildren,
{
uint32_t ii;
for (ii = 0; rc ==
sOKAY && ii < nChildren; ii++)
{
printf (
"Insert children with id: %d and name: %s\n", children[ii].child_id,
children[ii].child_name);
db, TABLE_CHILD, &children[ii], sizeof (CHILD), &inserted);
printf ("Connect the newly created child to its parents\n");
if (rc ==
sOKAY && siblingsOnMothersSide)
{
}
if (rc ==
sOKAY && siblingsOnFathersSide)
{
}
}
return rc;
}