Delphi Examples: DbiCloseCursor

<< Click to Display Table of Contents >>

Navigation:  »No topics above this level«

Delphi Examples: DbiCloseCursor

Return to chapter overview

Close the valid cursor passed in:

If you have opened a cursor with a dbi call, then this example applies. Otherwise, use the Close method of a Delphi TDataSet descendent component.

This example uses the following input:

 fDbiCloseCursor(hCursor);

 

The procedure is defined as:

procedure fDbiCloseCursor(phTmpCur: phDBICur);

begin
       Check(DbiCloseCursor(phTmpCur));

end;