Equivalent of NextResult() method in Dataset/DataAdapter?
- by flopdix
Hi All,
I have a stored procedure that contains 3 select statements hence i get 3 resultsets. I am aware that using SqlDataReader, i can use NextResult() method to jump to the 2nd or 3rd resultsets by calling it twice or thrice.
But i want to use the dataset/dataadapter, is there any ways that i can achieve this by not changing my stored procedure?
tia!