FireDAC.Comp.BatchMove.SQL.TFDBatchMoveSQLDriver.TableName
| [–] Properties | |
|---|---|
| Type: property | |
| Visibility: published | |
| Source: FireDAC.Comp.BatchMove.SQL.pas FireDAC.Comp.BatchMove.SQL.hpp | |
| Unit: FireDAC.Comp.BatchMove.SQL | |
| Parent: TFDBatchMoveSQLDriver | |
Delphi
property TableName: String read FTableName write SetTableName;
C++
__property System::UnicodeString TableName = {read=FTableName, write=SetTableName};
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.