Posted on: 12/18/2013 11:48:50 PM | Views : 633

Need help with my code...
I have an sQL stored procedure with multiple statements and I need to retrieve from statement # 3 - how do I get my code below to retrieve or read the record in statement table # 3
I am not sure how to fix the code.
 SqlDataAdapter da = new SqlDataAdapter();                 da.SelectCommand = cmd;                 DataSet ds = new DataSet();                                   try                 {                 & ...

Go to the complete details ...