Bde.DBTables.TTable.DeleteIndex

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
procedure
function
Visibility: public
Source:
Bde.DBTables.pas
Bde.DBTables.hpp
Unit: Bde.DBTables
Parent: TTable

Delphi

procedure DeleteIndex(const Name: string);

C++

void __fastcall DeleteIndex(const System::UnicodeString Name);

Description

Deletes a secondary index for the table.

Call DeleteIndex to remove a secondary index for a table. Name is the name of the index to delete. DeleteIndex cannot remove a primary index.

Note: To delete an index, an application must first open the table for exclusive access.

See Also