C# SQL查询结果ToDataTable
最最常用的SQL 查询的返回结果,插入到DataTable 中
//连接字符串
string connectionString= "server=127.0.0.1;integrated security=true;database=MSPetShop4";
//实例化数据库连接
using(System.Data.SqlClient.SqlConnection connection = new SqlConnection(connectionString))
{
//定义执行SQL语句,可以为select查询,也可以为存储过程,我们要的只是返回的结果集.
string sql = "SELECT 客户,产品,年龄 FROM dbo.A";
//强大的SqlDataAdapter
System.Data.SqlClient.SqlDataAdapter adapter = new SqlDataAdapter(sql,connection);
DataSet ds = new DataSet();
//Fill 方法会执行一系列操作 connection.open command.reader 等等
//反正到最后就把 sql语句执行一遍,然后把结果集插入到 ds 里.
adapter.Fill(ds);
DataTable dt = ds.Tables[0];
}
Console.ReadLine();
版权声明:
作者:亦灵一梦
链接:https://blog.haokaikai.cn/2018/program/aspnet/147.html
来源:开心博客
文章版权归作者所有,未经允许请勿转载。
THE END
1
二维码
海报
C# SQL查询结果ToDataTable
最最常用的SQL 查询的返回结果,插入到DataTable 中
//连接字符串
string connectionString= "server=127.0.0.1;integrated security=……