Select from following answers:- Call the DbDataReader.Read method to iterate through rows within a result set. Call DbDataReader.NextResult to advance to the next result set.

- Specify SequentialAccess. Call the DbDataReader.Read method to iterate through all rows in all result sets.
- Call the DbDataReader.NextResult method to iterate through all rows in all result sets.
- All Above
The DbDataReader.Read method advances the reader to the next record in a result set. The DbDataReader.NextResult method advances to the next result set.
Calling the DbDataReader.NextResult method repeatedly iterates through result sets but not rows within each result set.
Show Correct Answer
Source: MeasureUp.com | |
Alert Moderator