FireDAC.Comp.BatchMove.SQL.TFDBatchMoveSQLDriver.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
FireDAC.Comp.BatchMove.SQL.pas
FireDAC.Comp.BatchMove.SQL.hpp
FireDAC.Comp.BatchMove.SQL TFDBatchMoveSQLDriver

Description

Use the TableName property to specify a DB table name.

Once you specify the Connection to the DBMS at design-time, a list of available tables appear on the TableName drop-down menu. Use the TableName property or the ReadSQL property to define the table or set of records you want to move using a TFDBatchMove component. These two properties are mutually exclusive.

The name can include path variables.

When a destination table does not exist and [poCreateDest] is included into the Options property of TFDBatchMove, then the destination DB table is created with the TableName name and the structure provided by the reader.

See Also