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