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