up vote 5 down vote favorite
2
share [g+] share [fb]

I cannot find an elegant way to get the return value from a stored procedure when using TableAdapters.

It appears the TableAdapter does not support SQL stored procedure return values when using a non-scalar stored procedure call. You'd expect the return value from the auto-generated function would be the return value from the stored procedure but it isn't (it is actually the number of rows affected). Although possible to use 'out' parameters and pass a variable as a ref to the auto generated functions it isn't a very clean solution.

I have seen some ugly hacks on the web to solve this, but no decent solution. Any help would be appreciated.

link|improve this question
Indeed, I have the same problem, it's ridiculous that return values aren't supported, without hacking – nicodemus13 Dec 19 '08 at 15:04
feedback

6 Answers

The way to get the return value is to use a SqlParameter on the SqlCommand object which has its Direction set to ParameterDirection.ReturnValue. You should check the SelectCommand property of the TableAdapter after calling Fill.

link|improve this answer
The SelectCommand property is (AFAIK) private to the TableAdapter. I would therefore have to extend each TableAdapter with a partial class which, in my opinion, is not the elegant solution I'm hoping to find. – Chris Driver Sep 17 '08 at 11:18
feedback

NOTE: The way to go is using a SqlParameter where the Direction = ParameterDirection.ReturnValue

With that said, as someone already mentioned SqlParameters, here is a dynamic method alternate using a DataSet. (if thats how you ride):

Example SQL statement and C# as fallows:

string sql = @"DECLARE @ret int 
            EXEC @ret = SP_DoStuff 'parm1', 'parm2'
            SELECT @ret as ret";

DataSet ds = GetDatasetFromSQL(sql); //your sql to dataset code here...

int resultCode = -1;
int.TryParse(ds.Tables[ds.Tables.Count-1].Rows[0][0].ToString(), out resultCode);

The stored procedure results are loaded into a DataSet and will have as many DataTables as return select statements in the stored procedure.

The last DataTable in the DataSet will have 1 row and 1 column that will contain the stored procedure return value.

link|improve this answer
feedback

I cannot say for certain because I have do not use TableAdapters, but you might need to look at your stored procedure and include the following around your procedure.

SET ROWCOUNT OFF

BEGIN
<Procedure Content>
END

SET ROWCOUNT ON
link|improve this answer
Thanks for the suggestion, but unfortunately SETting the ROWCOUNT doesn't appear to solve my issue. – Chris Driver Oct 2 '08 at 9:44
feedback
up vote 0 down vote accepted

Closing this question as it appears return values aren't supported and there is no elegant workaround!

link|improve this answer
feedback

Actually, all you need to do is to return your final value from the stored procedure using a SELECT statement, not a RETURN statement. The result of the SELECT will be the return value. For example, if you simply make your sp exit statement "SELECT 1" then you'll get back a 1. Now just SELECT the actual scalar you want returned.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.