TMedDataset.HbResync TMedDataset

procedure HbResync;

Description

Low level method which can be used to synchronize the state of DataSet buffers with the underlying xHarbour table record. Use this method ro resynchronize if you've moved the current record pointer using low-level table access functions.

Example:

var

tab: TMedTable;

begin

// . . .

tab.hbtab.DbSkip(1); // low-level skip

HbResync; // resynchronize table and dataset position

end;