Data.SqlExpr.TSQLTable.TableName
[–] Properties | |
---|---|
Type: property | |
Visibility: published | |
Source: Data.SqlExpr.pas Data.SqlExpr.hpp
| |
Unit: Data.SqlExpr | |
Parent: TSQLTable |
Delphi
property TableName: string read FTableName write SetTableName;
C++
__property System::UnicodeString TableName = {read=FTableName, write=SetTableName};
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.