如何将表从存储过程检索到数据表?
Posted
技术标签:
【中文标题】如何将表从存储过程检索到数据表?【英文标题】:How can I retrieve a table from stored procedure to a datatable? 【发布时间】:2010-12-28 09:04:28 【问题描述】:我创建了一个存储过程以便返回一个表。
类似这样的:
create procedure sp_returnTable
body of procedure
select * from table
end
当我在前端调用这个存储过程时,我需要编写什么代码才能在数据表对象中检索它?
我编写了如下代码。我基本上想知道将表检索和存储到数据表对象中。我所有的查询都在运行,但我不知道如何通过存储过程将表检索到数据表中
DataTable dtable = new DataTable();
cmd.Connection = _CONN;
cmd.CommandText = SPNameOrQuery;
cmd.CommandType = CommandType.StoredProcedure;
SqlDataAdapter adp = new SqlDataAdapter(cmd);
OpenConnection();
adp.Fill(dtTable);
CloseConnection();
在此代码中,命令已与存储过程名称及其参数绑定。它会从存储过程中返回一个数据表吗?
【问题讨论】:
【参考方案1】:string connString = "<your connection string>";
string sql = "name of your sp";
using(SqlConnection conn = new SqlConnection(connString))
try
using(SqlDataAdapter da = new SqlDataAdapter())
da.SelectCommand = new SqlCommand(sql, conn);
da.SelectCommand.CommandType = CommandType.StoredProcedure;
DataSet ds = new DataSet();
da.Fill(ds, "result_name");
DataTable dt = ds.Tables["result_name"];
foreach (DataRow row in dt.Rows)
//manipulate your data
catch(SQLException ex)
Console.WriteLine("SQL Error: " + ex.Message);
catch(Exception e)
Console.WriteLine("Error: " + e.Message);
修改自Java Schools Example
【讨论】:
我不明白,存储过程是如何执行的,因为我不使用数据集或很少使用。 “cmd.ExecuteQuery()”你能解释一下我是否可以用它来做同样的事情 当您调用“Fill”时,它将运行您与“Select”语句关联的命令并将结果放入名为“result_name”的表中。这与调用 ExecuteReader() 的行为相同,将行单独读取并放入 List> 类型结构中。 收到数据集中的数据后马上关闭连接不是更好吗? 使用 DataAdapter.Fill 时无需打开或关闭连接。另外,我会改用 using 语句。它更具可读性。您还应该处理 SqlCommand 和 SqlDataAdapter。 @F***Silva 在数据表旁边有来自 t sql 的输出参数怎么样?如何获得输出参数?可能吗?样品?【参考方案2】:同时设置CommandText
,并在SqlAdapter
上调用Fill
以检索DataSet
中的结果:
var con = new SqlConnection();
con.ConnectionString = "connection string";
var com = new SqlCommand();
com.Connection = con;
com.CommandType = CommandType.StoredProcedure;
com.CommandText = "sp_returnTable";
var adapt = new SqlDataAdapter();
adapt.SelectCommand = com;
var dataset = new DataSet();
adapt.Fill(dataset);
(为清楚起见,示例使用无参数构造函数;可以使用其他构造函数缩短。)
【讨论】:
我需要告诉适配器选择命令 adapt.SelectCommand = com; ? @Shantanu Gupta:是的,或者您可以使用SqlDataAdapter(com)
将SelectCommand
作为参数传递给构造函数【参考方案3】:
说明是否有人想在调用存储过程时发送一些参数,如下所示,
using (SqlConnection con = new SqlConnection(connetionString))
using (var command = new SqlCommand(storedProcName, con))
foreach (var item in sqlParams)
item.Direction = ParameterDirection.Input;
item.DbType = DbType.String;
command.Parameters.Add(item);
command.CommandType = CommandType.StoredProcedure;
using (var adapter = new SqlDataAdapter(command))
adapter.Fill(dt);
【讨论】:
以上是关于如何将表从存储过程检索到数据表?的主要内容,如果未能解决你的问题,请参考以下文章
如何使用来自 c# 的 MySQL 存储过程将表作为输入发送到存储过程?我有 T-SQL 工作