C
Carl San
I am using ADO.Net in VB.net application. .Net Framework 1.1.
In a stored procedure I have multiple output parameters and multiple result
sets. How to code for this in ADO.Net?
I have used MyCommandObject.ExecuteNonQuery() when there were only output
parameters and no rows were returned from stored procedure.
I have used
Dim MyDataReader As SqlDataReader = MyCommandObject.ExecuteReader() when I
wanted to read one set of result set returned by stored procedure.
How to call a stored procedure when I have multiple output parameters and
multiple results sets?
Thanks,
Carl
In a stored procedure I have multiple output parameters and multiple result
sets. How to code for this in ADO.Net?
I have used MyCommandObject.ExecuteNonQuery() when there were only output
parameters and no rows were returned from stored procedure.
I have used
Dim MyDataReader As SqlDataReader = MyCommandObject.ExecuteReader() when I
wanted to read one set of result set returned by stored procedure.
How to call a stored procedure when I have multiple output parameters and
multiple results sets?
Thanks,
Carl