IBX.IBTable.TIBTable.TableName

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property TableName: String read FTableName write SetTableName;

C++

__property System::UnicodeString TableName = {read=FTableName, write=SetTableName};

Properties

Type Visibility Source Unit Parent
property published
IBX.IBTable.pas
IBX.IBTable.hpp
IBX.IBTable TIBTable

Description

Indicates the name of the database table or view that this component encapsulates.

Use TableName to specify the name of the database relation this component encapsulates. To set TableName to a meaningful value, the Database property should already be set. If Database is set at design time, then select a valid table name from the TableName drop-down list in the Object Inspector.

Note: To set TableName, the Active property must be false.

Tip: Setting TableName clears the FieldDefs property. Therefore, if you are using TIBTable to create a new table, set the value of TableName before you assign any field definitions.