Delphi Examples: DbiRegenIndexes

<< Click to Display Table of Contents >>

Navigation:  »No topics above this level«

Delphi Examples: DbiRegenIndexes

Return to chapter overview

Regenerate all indexes associated with a cursor.

This function regenerates the indexes associated with the Ttable specified in the TblName parameter. This example uses the following input:

 fDbiRegenIndexes(BIOLIFE_TABLE);

 

The procedure is:

procedure fDbiRegenIndexes(TblName: TTable);

begin

 Check(DbiRegenIndexes(TblName.Handle));

end;