Data.SqlExpr.TSQLTable.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
Data.SqlExpr.pas
Data.SqlExpr.hpp
Data.SqlExpr TSQLTable

Description

Specifies the table on the database server represented by this component.

Set TableName to the name of a table on the database server. TSQLTable automatically generates an SQL query to fetch all of the records and all of the fields in that table.

Note: In the automatically generated SQL query, the ORDER BY clause is determined by the IndexName or IndexFieldNames property.

See Also