FireDAC.Phys.ADS.TFDADSBackupRestore.ArchiveFile

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ArchiveFile: String read FArchiveFile write FArchiveFile;

C++

__property System::UnicodeString ArchiveFile = {read=FArchiveFile, write=FArchiveFile};

Properties

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

Description

Specifies the name of an archive file that is used to make a backup or restore operation.

  • Use the ArchiveFile property with a backup to specify the .tar archive file that will contain the individual backup files. In this case, the individual files are removed from disk. See the following code example:
FDADSBackupRestore.ArchiveFile='mybackup.tar’;
Note: The archive file will be placed in the backup folder location.
  • Use the ArchiveFile property with a restore operation to specify the name of the archive file that contains the backup image.
    Note: The archive file is expected to be in the source backup folder location.

See Also