Delphi Examples: DbiSetToEnd

<< Click to Display Table of Contents >>

Navigation:  »No topics above this level«

Delphi Examples: DbiSetToEnd

Return to chapter overview

Position the cursor at the end of the result set.

Delphi programs should use the Last method from a TDataset object.

This example uses the following input:

 fDbiSetToEnd(hCur);

 

The procedure is:

procedure fDbiSetToEnd(hTmpCur: hDbiCur);

begin

 Check(DbiSetToEnd(hTmpCur));

end;