Direct method from SQL command text to DataSet(从 SQL 命令文本到 DataSet 的直接方法)
问题描述
如果我有 sql 命令,获取 DataSet 的最直接途径是什么?
What is the most direct route to get a DataSet if I have a sql command?
string sqlCommand = "SELECT * FROM TABLE";
string connectionString = "blahblah";
DataSet = GetDataSet(sqlCommand,connectionString);
GetDataSet()
{
//...?
}
我从 SqlConnection
和 SqlCommand
开始,但我在 API 中看到的最接近的是 SqlCommand.ExecuteReader()
.使用这种方法,我需要获取 SqlDataReader
,然后手动将其转换为 DataSet
.我认为有更直接的途径来完成任务.
I started with SqlConnection
and SqlCommand
, but the closest thing I see in the API is SqlCommand.ExecuteReader()
. With this method, I'll need to get a SqlDataReader
and then convert this to a DataSet
manually. I figure there is a more direct route to accomplish the task.
如果更简单,DataTable
也将符合我的目标.
If easier, a DataTable
will also fit my goal.
推荐答案
public DataSet GetDataSet(string ConnectionString, string SQL)
{
SqlConnection conn = new SqlConnection(ConnectionString);
SqlDataAdapter da = new SqlDataAdapter();
SqlCommand cmd = conn.CreateCommand();
cmd.CommandText = SQL;
da.SelectCommand = cmd;
DataSet ds = new DataSet();
///conn.Open();
da.Fill(ds);
///conn.Close();
return ds;
}
这篇关于从 SQL 命令文本到 DataSet 的直接方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从 SQL 命令文本到 DataSet 的直接方法
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 输入按键事件处理程序 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01