|
<< Click to Display Table of Contents >> Delphi Examples: DbiGetIndexSeqNo |
![]() ![]()
|
Return the index sequence number for the current index. This example only works with Paradox and SQL tables and uses the following input:
IXNum := fDbiGetIndexSeqNo(InterBaseCustTbl);
The function is:
function fDbiGetIndexSeqNo(Table: TTable): Word;
begin
Check(DbiGetIndexSeqNo(Table.Handle, PChar(Table.IndexName), nil, 0, Result));
end;