FireDAC.Phys.ADS.TFDADSBackupRestore.TableTypeMap
[–] Properties | |
---|---|
Type: property | |
Visibility: published | |
Source: FireDAC.Phys.ADS.pas FireDAC.Phys.ADS.hpp
| |
Unit: FireDAC.Phys.ADS | |
Parent: TFDADSBackupRestore |
Delphi
property TableTypeMap: TStrings read FTableTypeMap write SetTableTypeMap;
C++
__property System::Classes::TStrings* TableTypeMap = {read=FTableTypeMap, write=SetTableTypeMap};
Description
Specifies the table type to the file extension mapping.
Use the TableTypeMap property to specify what table type should be used for a specific table extension.
Only necessary for free table backup / restore operations.
This option can be used to back up and / or restore a directory of free tables that consists of both ADT and DBF tables.
Each mapping must be located on a separated line and should include a three character extension, followed by an equal sign, and the Advantage table type constant.
Example
with FDADSBackup1.TableTypeMap do begin
Clear;
Add('adt=ADS_ADT');
Add('dbf=ADS_CDX');
end;