FireDAC.Phys.ADS.TFDADSBackupRestore.Results

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: public
Source:
FireDAC.Phys.ADS.pas
FireDAC.Phys.ADS.hpp
Unit: FireDAC.Phys.ADS
Parent: TFDADSBackupRestore

Delphi

property Results: TFDDatSTable read FResults;

C++

__property Firedac::Dats::TFDDatSTable* Results = {read=FResults};

Description

The reference to the backup / restore errors list.

Use the Results property to read the last backup / restore operation error list.

The property is filled after the call to the Backup or Restore methods.

Example

FDADSBackup.Backup;
FDMemTable1.AttachTable(ADADSBackup.Results, nil);
FDMemTable1.Open;

See Also