cursor/printOurCommonChildrenNames.c
static RDM_RETCODE printOurCommonChildrenNames (
RDM_CURSOR mother,
RDM_CURSOR father)
{
RDM_RETCODE rc;
char name[32];
RDM_CURSOR mothersChildren = NULL;
RDM_CURSOR fathersChildren = NULL;
rc = rdm_cursorGetMemberRows (
mother, REF_MOTHERS_CHILDREN,
&mothersChildren);
{
rc = rdm_cursorGetMemberRows (
father, REF_FATHERS_CHILDREN, &fathersChildren);
}
if (rc == sOKAY)
{
rc = rdm_cursorMoveToNext (mothersChildren);
}
/* Iterate over all mothers children */
while (rc == sOKAY)
{
rc = rdm_cursorMoveToPosition (fathersChildren, mothersChildren);
{
rc = sOKAY;
}
{
rc = rdm_cursorReadColumn (
mothersChildren, COL_CHILD_CHILD_NAME, name, sizeof (name),
NULL);
if (rc == sOKAY)
{
printf ("Common child: %s\n", name);
}
}
if (rc == sOKAY)
{
rc = rdm_cursorMoveToNext (mothersChildren);
}
}
rc = sOKAY;
rdm_cursorFree (mothersChildren);
rdm_cursorFree (fathersChildren);
return rc;
}
RDM_RETCODE rdm_cursorGetMemberRows(RDM_CURSOR ownerCursor, RDM_REF_ID refId, RDM_CURSOR *pCursor)
Associate an RDM_CURSOR with members.
RDM_RETCODE rdm_cursorReadColumn(RDM_CURSOR cursor, RDM_COLUMN_ID columnId, void *columnValue, size_t bytesIn, size_t *bytesOut)
Read a single column from a table row.