RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
TDataSet.Resync Method

Re-fetches the active record and the records that precede and follow it.

Pascal
procedure Resync(Mode: TResyncMode); virtual;
C++
virtual __fastcall Resync(TResyncMode Mode);

Resync is used internally by other dataset methods to resynchronize the dataset with underlying physical data when making calls that may change the internal cursor position. Applications should use the Refresh method instead of calling Resync. 

Mode indicates optional processing that Resync should handle. If Mode contains rmExact, Resync raises an exception if Resync is called when the cursor is not positioned on a valid record. If Mode contains rmCenter, Resync positions the active record in the center of all buffered records. 

Regardless of Mode, Resync also activates the buffers for the active record, retrieves prior and subsequent records for display purposes, and triggers a dataset change event. 

 

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