我怎样才能读取多个表到一个数据集? [英] How can I read multiple tables into a dataset?

查看:105
本文介绍了我怎样才能读取多个表到一个数据集?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个存储过程返回多个表。我如何执行和读取两个表?

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?

感谢。

推荐答案

从<适于href="http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqldataadapter(VS.71).aspx">MSDN:

using (SqlConnection conn = new SqlConnection(connection))
{
    SqlDataAdapter adapter = new SqlDataAdapter();
    adapter.SelectCommand = new SqlCommand(query, conn);
    adapter.Fill(dataset);
    return dataset;
}

这篇关于我怎样才能读取多个表到一个数据集?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆