Subject | RE: [IBO] Seeing deleted records with CachedUpdates |
---|---|
Author | Claudio Valderrama C. |
Post date | 2001-05-17T01:37:33Z |
> -----Original Message-----Geoff, this is an excerpt from the help file:
> From: Geoff Worboys [mailto:geoff@...]
> Sent: Jueves 3 de Mayo de 2001 8:57
>
> Do you know if there is an equivalent function/property in standard
> VCL TDataset, or is this function/property something peculiar to IBX?
TBDEDataSet.UpdateRecordTypes.
Specifies the type of records visible in a dataset when cached updates are
enabled.
type TUpdateRecordTypes = set of (rtModified, rtInserted, rtDeleted,
rtUnmodified);
property UpdateRecordTypes: TUpdateRecordTypes;
Description
Use UpdateRecordTypes to specify the records that are visible in a dataset
when cached updates are enabled. UpdateRecordTypes is a set that can have
the following values:
Value Meaning
rtModified Modified records are visible.
rtInserted Inserted records are visible.
rtDeleted Deleted records are visible.
rtUnmodified Unmodified records are visible.
By default, a dataset is created with an UpdateRecordTypes set of
[rtModified, rtInserted, rtUnmodified], meaning that all existing, edited,
or inserted records are visible to the user.
[snip]
C.