This method of the Recordset class refreshes the data in the current Recordset object from the underlying database. resync has the following signatures:
resync()
resync(int affectRecords, int resyncValues)
Refreshes the data in the current Recordset object from the underlying database.
public void resync();
Refreshes the data in the current Recordset object from the underlying database.
public void resync(int affectRecords, int resyncValues);
affectRecords | An AdoEnums.Affect value that determines how many records the resync method will affect. |
resyncValues | An AdoEnums.Resync value that specifies whether underlying values are overwritten. |