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 的直接方法
基础教程推荐
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- SSE 浮点算术是否可重现? 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- 将 XML 转换为通用列表 2022-01-01