Order and save right now!
20% off with the 729824315 dicscount code for Ultimate Pack and any another product for Delphi from Greatis Programming! |
⤷ 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;
-
More for developers