This method of the Recordset class clears the current Recordset object and returns the next Recordset by advancing through a series of commands. nextRecordset has the following signatures:
nextRecordset()
nextRecordset(int[] recordsAffected)
Clears the current Recordset object and returns the next Recordset.
public Recordset nextRecordset();
Returns a Recordset object.
Clears the current Recordset object and returns the next Recordset.
public Recordset nextRecordset(int[] recordsAffected);
Returns a Recordset object.
recordsAffected | A Long variable to which the provider returns the number of records that the current operation affected. |