RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
TIBDataSet.CachedUpdates Property

Specifies whether cached updates are enabled for a dataset.

Pascal
property CachedUpdates: Boolean;
C++
__property Boolean CachedUpdates;

CachedUpdates enables or disables the use of cached updates for a dataset. If CachedUpdates is true, cached updates are enabled. If CachedUpdates is false, cached updates are disabled. 

When cached updates are enabled, updates to a dataset (such as posting changes, inserting new records, or deleting records), are stored in an internal cache on the client machine instead of being written directly to the dataset's underlying database tables. When changes are complete, an application writes all cached changes to the database in the context of a single transaction.

Note: Note: Instead of using cached updates, applications can obtain the same benefits with greater control by using a client dataset.
 

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!