![]() | ![]() Products ![]() ![]() ![]() ![]() |
Home » Technical Support » DBISAM Technical Support » Product Manuals » DBISAM Version 4 Manual for Delphi 5 » Using DBISAM » Adding and Deleting Indexes from a Table |
begin with MyDBISAMTable do begin DatabaseName:='d:\temp'; TableName:='customer'; if Exists then AddIndex('ByCompany','Company', [ixCaseInsensitive],'',icDuplicateByte); end; end;
Original Extension | Backup Extension |
.idx (indexes) | .ibk |
begin with MyDBISAMTable do begin DatabaseName:='d:\temp'; TableName:='customer'; if Exists then DeleteIndex('ByCompany'); end; end;
begin with MyDBISAMTable do begin DatabaseName:='d:\temp'; TableName:='customer'; if Exists then DeleteAllIndexes; end; end;
This web page was last updated on Friday, January 31, 2025 at 08:42 AM | Privacy Policy![]() © 2025 Elevate Software, Inc. All Rights Reserved Questions or comments ? ![]() |