cursor/cancelClubMembership.c
{
RDM_RETCODE rc;
rc = rdm_cursorUnlinkRow (adult, REF_MEMBERS);
{
printf ("Canceled club membership\n");
}
{
printf ("Is not a member\n");
rc = sOKAY;
}
return rc;
}
{
RDM_RETCODE rc;
rc = rdm_cursorUnlinkRow (child, REF_JUNIOR_MEMBERS);
if (rc == sOKAY)
{
printf ("Canceled club membership\n");
}
{
printf ("Is not a member\n");
rc = sOKAY;
}
return rc;
}
RDM_RETCODE rdm_cursorUnlinkRow(RDM_CURSOR cursor, RDM_REF_ID refId)
Unlink a row from its owner.