TDAFMXReconcileProvider
Overview
TDABaseReconcileProvider is the class that shows the Reconcile Dialog under Delphi FireMonkey.
See also Introduction to the Reconcile Dialog
Location
- Unit: uDAReconcileDialog_FMX.pas
- Ancestry: TComponent | TROComponent | TDABaseReconcileProvider | TDAFMXReconcileProvider
Instance Methods
constructor Create override (declared in TROComponent)
Standard component constructor
constructor Create(aOwner: TComponent)
Parameters:
- aOwner: Owner
Assign override (declared in TROComponent)
Copies the contents of another, similar object.
procedure Assign(Source: TPersistent)
Parameters:
- Source: Instance whose properties will be copied
Notification protected override (declared in TROComponent)
Forwards notification messages to all owned components.
procedure Notification(aComponent: TComponent; Operation: TOperation)
Parameters:
- aComponent: component
- Operation: operation
ROFreeNotification (declared in TROComponent)
Forwards notification messages to all owned components.
procedure ROFreeNotification(aComponent: TComponent)
Parameters:
- aComponent: component
RORemoveFreeNotification (declared in TROComponent)
Forwards notification messages to all owned components.
procedure RORemoveFreeNotification(aComponent: TComponent)
Parameters:
- aComponent: component
SendRemoveNotification protected (declared in TROComponent)
Forwards notification messages to all owned components.
procedure SendRemoveNotification(aComponent: TComponent)
Parameters:
- aComponent: component
Show (TDABaseDataAdapter, TDADeltaChangeList, TDADataTableList) virtual abstract (declared in TDABaseReconcileProvider)
Shows the Reconcile Dialog.
procedure Show(RemoteDataAdapter: TDABaseDataAdapter; var AFailedDeltaList: TDADeltaChangeList; aTableList: TDADataTableList)
Parameters:
- RemoteDataAdapter: data adapter whom called dialog
- AFailedDeltaList: list of failed deltas
- aTableList: list of tables
Show (TDABaseDataAdapter, TList<TDADeltaChange>, TDADataTableList) override
Shows the Reconcile Dialog.
procedure Show(RemoteDataAdapter: TDABaseDataAdapter; var AFailedDeltaList: TList<TDADeltaChange>; aTableList: TDADataTableList)
Parameters:
- RemoteDataAdapter:
- AFailedDeltaList:
- aTableList:
- Introduction to the Reconcile Dialog