> Can "Select" return multiple values like "out" could?
Of course! But then you can't use ExecuteScalar any more. Now you are returning a full ROW of data. The most efficient way to read that row is via a DataReader, but you could even dump it into a DataTable (though presumably you'd end up with a one-row datatable).
|