FireDAC.Phys.ADS.TFDADSBackupRestore.TableTypeMap

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property TableTypeMap: TStrings read FTableTypeMap write SetTableTypeMap;

C++

__property System::Classes::TStrings* TableTypeMap = {read=FTableTypeMap, write=SetTableTypeMap};

Properties

Type Visibility Source Unit Parent
property published
FireDAC.Phys.ADS.pas
FireDAC.Phys.ADS.hpp
FireDAC.Phys.ADS TFDADSBackupRestore

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;

See Also