hi
if I have a stored procedure that returns multiple datasets, like
create PROCEDURE [dbo].[zz_Test_Multi]
AS
SELECT
getdate() as Somedate
SELECT
DATEADD("d",1,getdate()) as AnotherDate
go
if I set an ADO.net source as that stored procedure, it comes up with the first set "someDate"
is there any way I can access both sets?