如何从存储过程中获取结果并将结果保存在类属性中

时间:2013-06-08 12:19:55

标签: c# sql-server

我有以下代码:

public static void executeStoredProcedure(SqlCommand sp)
{
           SqlConnection conn = new SqlConnection();
           conn.ConnectionString=Connection.getConnection();
           conn.Open();
           sp.CommandType = CommandType.StoredProcedure;
           sp.Connection = conn;
           sp.ExecuteNonQuery();
           conn.Close();
}

此代码执行存储过程。

但我的存储过程是

Create procedure [dbo].[selectAllItems]
(@ItemCode varchar(50) )
as
begin
    select * from Item where ItemCode  = @ItemCode
end

它会返回行但是如何在c#code

上面得到这个结果

3 个答案:

答案 0 :(得分:2)

您需要使用SqlDataReader来读取存储过程返回的结果集:

using (SqlConnection conn = new SqlConnection(Connection.getConnection()))
using (SqlCommand sp = new SqlCommand("dbo.selectAllItems", conn))
{
       sp.CommandType = CommandType.StoredProcedure;
       sp.Parameters.Add("@ItemCode", SqlDbType.Int).Value = your-item-code-value-here;

       conn.Open();

       using (SqlDataReader rdr = sp.ExecuteReader())
       {
          while (rdr.Read())
          {
             // read the values from the data reader, e.g.
             // adapt to match your actual query! You didn't mentioned *what columns*
             // are being returned, and what data type they are
             string colValue1 = rdr.GetString(0);
             int colValue2 = rdr.GetInt(1);
          }
       }

       conn.Close();
}

SqlDataReader读取这些值时,您可以例如创建一个对象类型并设置它的属性 - 或类似的东西 - 完全取决于你想做什么。

当然:使用像Entity Framework这样的ORM会保存你不必编写很多这类代码--EF会自动处理这个问题 - 自动化。

答案 1 :(得分:1)

您需要将参数解析为您的存储过程,如下所示

sp.Parameters.AddWithValue("@ItemCode", itemcode);

示例代码

public DataTable SelectAllItems(string itemCode)
{
    DataTable dt = new DataTable();
    using (SqlConnection conn = new SqlConnection(Connection.getConnection()))
    using (SqlCommand cmd = new SqlCommand("selectAllItems", conn))
    {
        cmd.CommandType = CommandType.StoredProcedure;
        cmd.Parameters.AddWithValue("@ItemCode", itemCode);
        conn.Open();

        using (SqlDataAdapter adapter = new SqlDataAdapter(cmd))
        {
            adapter.Fill(dt);
        }

    }
    return dt;
}

答案 2 :(得分:0)

您可以使用SQL数据阅读器 请查看以下示例。

http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqldatareader.read.aspx