FireDAC.Phys.ADS.TFDADSBackupRestore.ArchiveFile
[–] Properties | |
---|---|
Type: property | |
Visibility: published | |
Source: FireDAC.Phys.ADS.pas FireDAC.Phys.ADS.hpp
| |
Unit: FireDAC.Phys.ADS | |
Parent: TFDADSBackupRestore |
Delphi
property ArchiveFile: String read FArchiveFile write FArchiveFile;
C++
__property System::UnicodeString ArchiveFile = {read=FArchiveFile, write=FArchiveFile};
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.