Bde.DBTables.TTable.GetIndexNames
[–] Properties | |
---|---|
Type: procedure function
| |
Visibility: public | |
Source: Bde.DBTables.pas Bde.DBTables.hpp
| |
Unit: Bde.DBTables | |
Parent: TTable |
Delphi
procedure GetIndexNames(List: TStrings);
C++
void __fastcall GetIndexNames(System::Classes::TStrings* List);
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);