I have a simple question.
I need to return results as simple text, either as a string or similar.
i.e. I want the same behavior such as
Results to Text (Cntrl + T)
When you run a Query from SQL Server Management Studio.
How can this be done programmatically against calling a Stored Proc from C#?
i.e. similar to ExecuteReader();
or ExecuteXMLReader();
but returning a string instead.
Is there some ToString()
available?
Thanks, Kai.