Moves the cursor to the next record in the data set.
The Execute method positions the cursor before the first record in the result set (not at the first record). Before you can retrieve the data from the first record, you must call this method to advance the cursor to that record.
VBScript
fetchStatus = resultset.MoveNext
Perl
$fetchStatus = $resultset->MoveNext();