如何使用DataAdapter在c#中调用具有可变参数的存储过程

本文关键字:变参 参数 存储过程 调用 DataAdapter 何使用 | 更新日期: 2023-09-27 18:19:25

我在c#中调用以下代码,用给定的存储过程"sp1_name"填充dataAdapter。问题是我想用不同的参数调用不同的存储过程。(所有SP执行SELECT)假设我的存储过程名称为"SP_SOMESP",那么一切正常。

假设我的存储过程名称为"SP_SOMESP @Month= 10, @Year = 2010",那么它就不能工作。它将抛出一个异常,无法找到此存储过程。

解决方案吗?

谢谢!

//First Connection - SP1
using (SqlConnection con = new SqlConnection(conStr))
{
            using (SqlCommand cmd = new SqlCommand(sp1_name, con)) //sp1_name = NAME + PARAMETERS
            {
                cmd.CommandTimeout = 3600;
                cmd.CommandType = CommandType.StoredProcedure;
                using (SqlDataAdapter dataAdapter = new SqlDataAdapter(cmd))
                {
                    dataAdapter.Fill(results2);
                }
            }
}

如何使用DataAdapter在c#中调用具有可变参数的存储过程

第一期:
存储过程中的参数不应与其名称
一起包含。第二个问题:
在存储过程的名称中使用空格并不是一个好的做法。

后面的代码
using(SqlConnection con = new SqlConnection("Your Connection String Here"))
{ 
    SqlCommand cmd = new SqlCommand("sp_SomeName", con);
    cmd.CommandType = CommandType.StoredProcedure;
    //the 2 codes after this comment is where you assign value to the parameters you
    //have on your stored procedure from SQL
    cmd.Parameters.Add("@MONTH", SqlDbType.VarChar).Value = "someValue";
    cmd.Parameters.Add("@YEAR", SqlDbType.VarChar).Value = "SomeYear";
    SqlDataAdapter da = new SqlDataAdapter(cmd);
    SqlDataSet ds = new SqlDataSet();
    da.Fill(ds); //this is where you put values you get from the Select command to a 
  //dataset named ds, reason for this is for you to fetch the value from DB to code behind
    foreach(DataRow dr in ds.Tables[0].Rows) // this is where you run through the dataset and get values you want from it.
    {
       someTextBox.Text = dr["Month"].ToString(); //you should probably know this code
    }
}

您必须以编程方式添加参数,参见SqlCommand.Parameters。

就像

cmd.Parameters.AddWithValue("@Month", 10);
cmd.Parameters.AddWithValue("@Year", 2010);

在命令声明之后和执行之前。

如果您发现需要声明数据类型,那么请尝试这样做

cmd.Parameters.Add("@Month", SqlDbType.Int).Value = 10;

检查这个,

using (SQLCommand cmd = new SQLCommand())
{
cmd.CommandText = "SP_SOMESP";
cmd.Parameters.Add("@Month", 10);
cmd.Parameters.Add("@Year", 2010);
cmd.CommandTimeout = 3600;
cmd.CommandType = CommandType.StoredProcedure;
cmd.Connection = con;
}
using (SqlDataAdapter dataAdapter = new SqlDataAdapter(cmd))
{
  dataAdapter.SelectCommand = cmd;
  dataAdapter.Fill(results2);
}