MSSQL has a PRINT command which lets me write output from stored procedures and sql text queries. The problem is that this output is not returned when calling through SqlDataAdapater using Fill method.
I am not sure why but if Print is not possible to use then maybe there is an alternative pipe:ing output to result?
No, anything that you want needs to be returned with the ‘result’.
You could in theory use an OUT parameter and add additional information to this.
Using a Stored Procedure with Output Parameters