Delphi Examples: DbiEndLinkMode

<< Click to Display Table of Contents >>

Navigation:  »No topics above this level«

Delphi Examples: DbiEndLinkMode

Return to chapter overview

End the master/detail link and close the associated cursors. This example uses the following input:

 fDbiEndLinkMode(hMas, hDet);

 

The procedure is defined as:

procedure fDbiEndLinkMode(var hMasCur, hDetCur: hDBICur);

begin

 Check(DbiUnlinkDetail(hDetCur));

 Check(DbiEndLinkMode(hMasCur));

 Check(DbiEndLinkMode(hDetCur));

 Check(DbiCloseCursor(hMasCur));

 Check(DbiCloseCursor(hDetCur));

end;