带参数的存储过程到C#中的DataGridView

时间:2015-06-15 09:42:51

标签: c# stored-procedures datagridview

我是C#的新手,我想简单地将数据从SQL数据库中提取到Visual Studio中的C#应用​​程序中。 我一直在使用混合指南来做到这一点,但找不到有什么问题。如果我想在不指定参数的情况下调用表,则代码可以工作,否则会失败。

这是我目前的代码:

string CS =  "Server = server-sql1;Database=Accounts;Trusted_connection=true";
using (SqlConnection con = new SqlConnection(CS))
{
    SqlCommand cmd = new SqlCommand("ASP_SLINVOICE", con);

    //specify that it is a stored procedure and not a normal proc
    cmd.CommandType = System.Data.CommandType.StoredProcedure;

    //list the parameters required and what they should be
    cmd.Parameters.AddWithValue("@varCURRENCY", "USD");
    cmd.Parameters.AddWithValue("@invSTART", "0");
    cmd.Parameters.AddWithValue("@invEND", "399999");
    cmd.Parameters.AddWithValue("@varCURRENCY", "0");

    con.Open();
    cmd.ExecuteNonQuery();

    using(SqlDataAdapter adap = new SqlDataAdapter(cmd))
    {
        DataTable dt = new DataTable();
        adap.Fill(dt);
        dataGridView1.DataSource = dt;
    }
}

这是我收到的错误消息:

enter image description here

1 个答案:

答案 0 :(得分:1)

你定义参数两次!

cmd.Parameters.AddWithValue("@varCURRENCY", "USD"); // #1
cmd.Parameters.AddWithValue("@invSTART", "0");
cmd.Parameters.AddWithValue("@invEND", "399999");
cmd.Parameters.AddWithValue("@varCURRENCY", "0"); // #2

删除其中一个