如何从存储过程中获取结果并将结果保存在类属性中
本文关键字:结果 保存 存在 属性 存储 存储过程 过程中 获取 | 更新日期: 2023-09-27 18:17:44
我有以下代码:
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#代码
您需要使用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
中读取这些值,您可以例如创建对象类型并设置其属性-或类似的东西-完全取决于您想要做什么。
当然:使用像实体框架这样的ORM将节省你不必编写大量这种类型的代码- EF会自动为你处理。
您需要将参数解析为您的存储过程,如下所示
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;
}
可以使用SQL Data reader查看下面的示例。
http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqldatareader.read.aspx