Delphi Examples: DbiResetRange

<< Click to Display Table of Contents >>

Navigation:  »No topics above this level«

Delphi Examples: DbiResetRange

Return to chapter overview

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;