J
John A Grandy
when wishing to read around 5-10 col values from a specific result row of a
sp ...
what are the trade-offs of the following two approaches:
1. write SP to return rowset, and use SQLDataReader to extract specific col
values
2. build the SP with an output type parameter for each col and then call
SQLCommand.ExecuteNonQuery and read each output parameter
sp ...
what are the trade-offs of the following two approaches:
1. write SP to return rowset, and use SQLDataReader to extract specific col
values
2. build the SP with an output type parameter for each col and then call
SQLCommand.ExecuteNonQuery and read each output parameter