Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a stored procedure with an output parameter. How do I read this value using c# code?

share|improve this question
Please post the code you have written so far. – Mitch Wheat Aug 8 '10 at 9:02

1 Answer

up vote 23 down vote accepted

I assume you use ADO.NET? If so, the SqlParameter class has the property "Direction". Set direction to output and after the query has executed you read the value from that parameter.

Something like this:

SqlCommand cmd = new SqlCommand("MyStoredProcedure", cn);
cmd.CommandType=CommandType.StoredProcedure;
SqlParameter parm=new SqlParameter("@pkid",SqlDbType.Int);
parm.Value=1;
parm.Direction =ParameterDirection.Input ; 
cmd.Parameters.Add(parm); 
SqlParameter parm2=new SqlParameter("@ProductName",SqlDbType.VarChar); 
parm2.Size=50; 
parm2.Direction=ParameterDirection.Output; // This is important!
cmd.Parameters.Add(parm2); 
cn.Open(); 
cmd.ExecuteNonQuery();
cn.Close(); 

// Print the output value
Console.WriteLine(cmd.Parameters["@ProductName"].Value); 
Console.ReadLine();
share|improve this answer
i have another question i need to determine that output parameter is decimal(8,2) how!!! – shmandor Aug 8 '10 at 9:37
I am not sure I understand the question. If you are returning a decimal in the output variable you should set the SqlDbType to Decimal. If you are in fact returning a decimal you can cast like this: (decimal)cmd.Parameters[@"MyDecimal"].Value – Merrimack Aug 8 '10 at 9:46
4  
I would strongly suggest to put SqlConnection and SqlCommand into using(....) { ... } blocks as a best practice – marc_s Aug 8 '10 at 9:50
i have problem when call stroc embeded or execution nested stroc – shmandor Aug 8 '10 at 10:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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