SqlPipe类
C# 复制代码
[Microsoft.SqlServer.Server.SqlProcedure()]
公共静态无效 StoredProcExecuteCommand(int 评级)
{
// 通过上下文连接进行连接。
使用 (SqlConnection 连接 = new SqlConnection("上下文连接=true"))
{
连接.Open();
SqlCommand 命令 = 新 SqlCommand(
“从采购中选择供应商 ID、帐号、名称。供应商” +
“WHERE CreditRating <= @ rating”,连接);
command.Parameters.AddWithValue("@ rating", rating);
// 执行命令并将结果直接发送给客户端。
SqlContext.Pipe.ExecuteAndSend(命令);
}
以上存储过程的执行结果如何在ASP.NET2.0应用程序端调用?
如果想把以上存储过程的返回结果体现在 DataList 控件中,应用程序端的调用代码关注的?
http://www.cnblogs.com/ASPNET2008/archive/2006/08/14/476478.html