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