Mega Code Archive

 
Categories / Delphi / Files
 

Add new index file at runtime

Title: Add new index file at runtime Use AddIndex method of Table component. First parameter is a name of new index, second parameter is a field of database. procedure TForm1.Button1Click(Sender: TObject); var Str: string; begin Str:='Area'; Table1.AddIndex(Str, Str, [ixUnique]); end;