private static SqlParameter AddNewParameterToCommand(SqlCommand command,
    string name, object value, bool isOutputParameter)
{       
    SqlParameter parm = new SqlParameter();
    parm.ParameterName = name;
    parm.Value = value;
    command.Parameters.Add(parm);

    if (isOutputParameter == true)
    {
        command.Parameters.Add(new SqlParameter("@parameter"));
    }

    return parm;
}

Here is what I was trying to setup but have been unable to: If the isOutputParameter parameter is true, the new SqlParameter object is set up to accept data back from the database when the command is run.

link|improve this question

77% accept rate
1  
You should accept answers from earlier. This will increase your chances of getting an answer. – Maxim V. Pavlov Jan 24 at 1:11
please improve your accept rate, accept answers if it is helpful – Ravi Jan 24 at 1:12
What issue are you running into? Please give more specifics on the behavior you are seeing. – Dan Solovay Jan 24 at 1:12
Please see: How does accepting an answer work: meta.stackoverflow.com/questions/5234/… – Mitch Wheat Jan 24 at 1:21
sorry new user :( – shenn Jan 24 at 1:33
feedback

2 Answers

up vote 0 down vote accepted

You need to set SqlParameter.Direction attribute.

if (isOutputParameter)
   {
    param.Direction=ParameterDirection.Output;
   }
link|improve this answer
Thanks! What would I need to do If this SQLcommand were to have a single output paramater and I wante d to get it's value? – shenn Jan 24 at 1:43
feedback
private static SqlParameter AddNewParameterToCommand(SqlCommand command,
    string name, object value, bool isOutputParameter)
{
    SqlParameter parm = new SqlParameter();
    parm.ParameterName = name;
    parm.Value = value;

    if (isOutputParameter)
    {
        parm.Direction = ParameterDirection.InputOutput;
    }

    command.Parameters.Add(parm);

    return parm;
} 

Ref: SqlParameter.Direction

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.