Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Capture return value from a SP
Message
General information
Forum:
ASP.NET
Category:
ADO.NET
Title:
Capture return value from a SP
Environment versions
Environment:
C# 1.1
Database:
MS SQL Server
Miscellaneous
Thread ID:
01077504
Message ID:
01077504
Views:
70
I am having some problems capturing the return value from a SP after I excecute it. Here is the code I use:
SqlConnection oCon = new SqlConnection(this.ConnectionString);
SqlCommand cmd = new SqlCommand("mySP", oCon);
cmd.CommandType = CommandType.StoredProcedure;
SqlParameter oParam = cmd.Parameters.Add("@Id", SqlDbType.UniqueIdentifier);
oParam.Value = myID;
oCon.Open();
cmd.ExecuteNonQuery();
oCon.Close();
I have been raising exceptions within SPs to notify the client that something was not cosher, but I would also like to know how to evaluate the return value from a SP.

Let us assume that for this example the SP looks something like this:
UPDATE myTable SET Name = 'Einar' WHERE Id = @Id
RETURN @@ERROR
Semper ubi sub ubi.
Next
Reply
Map
View

Click here to load this message in the networking platform