FireDAC.Comp.Client.TFDMemTable.FilterChanges
Delphi
property FilterChanges: TFDUpdateRecordTypes read FFilterChanges write SetFilterChanges default 11;
C++
__property FilterChanges = {default=11};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | published | FireDAC.Comp.Client.pas FireDAC.Comp.Client.hpp |
FireDAC.Comp.Client | TFDMemTable |
Description
Specifies what types of changed records must be visible (accessible though the navigation interface) in the dataset.
FireDAC.Comp.Client.TFDMemTable.FilterChanges inherits from FireDAC.Comp.DataSet.TFDDataSet.FilterChanges. All content below this line refers to FireDAC.Comp.DataSet.TFDDataSet.FilterChanges.
Specifies what types of changed records must be visible (accessible though the navigation interface) in the dataset.
The FilterChanges property allows to get or set the changed records types that must be visible in the dataset (accessible through the navigation interface of the dataset):
Type |
Meaning |
---|---|
|
Records changed after fetching or after the last CommitUpdates or CancelUpdates operation. |
|
New records, not yet posted to the DB and added after the dataset was opened or after the last CommitUpdates operation. |
|
Deleted records, not yet deleted from the DB and deleted after the dataset was opened or after the last CommitUpdates operation. |
|
Unchanged records. |
|
Records having associated errors after the ApplyUpdates operation. To get an error object, use the RowError property. |