|
<< Click to Display Table of Contents >> Delphi Examples: DbiEndLinkMode |
![]() ![]()
|
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;