本文介绍了我怎样才能读取多个表到一个数据集?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个存储过程返回多个表。我如何执行和读取两个表?
I have a stored procedure that returns multiple tables. How can I execute and read both tables?
我有这样的事情:
SqlConnection conn = new SqlConnection(CONNECTION_STRING);
SqlCommand cmd = new SqlCommand("sp_mult_tables",conn);
cmd.CommandType = CommandType.StoredProcedure);
IDataReader rdr = cmd.ExecuteReader();
我不知道怎么读......什么来处理这种类型的查询,我猜我应该将数据读入数据集的最佳方法是什么?如何做到这一点的最好方法是什么?
I'm not sure how to read it...whats the best way to handle this type of query, I am guessing I should read the data into a DataSet? How is the best way to do this?
感谢。
推荐答案
从MSDN:
using (SqlConnection conn = new SqlConnection(connection))
{
SqlDataAdapter adapter = new SqlDataAdapter();
adapter.SelectCommand = new SqlCommand(query, conn);
adapter.Fill(dataset);
return dataset;
}
这篇关于我怎样才能读取多个表到一个数据集?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!