fill dataset with stor pro

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Dear all
I create one stored procedure have two select statement on it

Then i want to fill one dataset(with two datatable) by this stored
procedure, how can it do?
 
Nothing special. The DataAdapter will fill a DataTable for each resultset
returned by the procedure. It might be mandatory though to use SET NOCOUNT
ON in the SP...
 
Back
Top