Bde.DBTables.TDatabase.GetTableNames

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: TDatabase

Delphi

procedure GetTableNames(List: TStrings; SystemTables: Boolean = False);

C++

void __fastcall GetTableNames(System::Classes::TStrings* List, bool SystemTables = false);

Description

Populates a string list with the names of tables in the database.

Call GetTableNames to retrieve a list of tables in the associated database.

List is a TStrings descendant that receives the table names. Any existing strings are deleted from the list before GetTableNames adds the names of all tables in the database.

SystemTables specifies whether the list of table names should include only the database's system tables. If SystemTables is true, only the system tables are added to List. If SystemTables is false, the list is filled with ordinary tables.

For example, the following line fills a list box with the names of all tables in the database:



Database1.GetTableNames(ListBox1.Items, False);



Database1->GetTableNames(ListBox1->Items, false);



See Also