Bde.DBTables.TTable.GetIndexNames

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure GetIndexNames(List: TStrings);

C++

void __fastcall GetIndexNames(System::Classes::TStrings* List);

Properties

Type Visibility Source Unit Parent
procedure
function
public
Bde.DBTables.pas
Bde.DBTables.hpp
Bde.DBTables TTable

Description

Retrieves a list of available indexes for a table.

Call GetIndexNames to retrieve a list of all available indexes for a table. List is a string list object, created and maintained by the application, into which to retrieve the index names.


Table1.GetIndexNames(ListBox1.Items);


Table1->GetIndexNames(ListBox1->Items);


See Also