Delphi Examples: DbiSetToBegin

<< Click to Display Table of Contents >>

Navigation:  »No topics above this level«

Delphi Examples: DbiSetToBegin

Return to chapter overview

Position the cursor at the beginning of the table.

Delphi programs should use the First method from a TDataset object. This method positions the cursor at the beginning of the result set.

This example uses the following input:

 fDbiSetToBegin(hCur);

 

The procedure is:

procedure fDbiSetToBegin(hTmpCur: hDbiCur);

begin

 Check(DbiSetToBegin(hTmpCur));

end;