Subject RE: [IBO] Seeing deleted records with CachedUpdates
Author Claudio Valderrama C.
> -----Original Message-----
> 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?

Geoff, this is an excerpt from the help file:

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.