|
<< Click to Display Table of Contents >> Delphi Examples: DbiResetRange |
![]() ![]()
|
Reset the range of a table after using DbiSetRange.
This example removes constraints on a result set.
function fDbiResetRange(Handle: hDBICur): DBIResult;
begin
Return := DbiResetRange(Handle); { remove range }
Check(Return); { raise an exception if that failed }
end;