This method of the Recordset class updates the data in a Recordset object by re-executing the query on which the object is based. requery has the following signatures:
requery()
requery(int options)
Updates the data in a Recordset object.
public void requery();
Updates the data in a Recordset object.
public void requery(int options);
options | A bitmask that contains an AdoEnums.ExecuteOption value affecting this operation. If this parameter is set to ASYNCEXECUTE, this operation will execute asynchronously and an addOnRecordsetChangeComplete event will be issued when it concludes. |