程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> 關於ASP.NET >> 關於ASP.NET 2.0編寫擴展存儲過程的問題

關於ASP.NET 2.0編寫擴展存儲過程的問題

編輯:關於ASP.NET

SqlPipe 類

C# 復制代碼

[Microsoft.SqlServer.Server.SqlProcedure()]
public static void StoredProcExecuteCommand(int rating)
{
  // Connect through the context connection.
  using (SqlConnection connection = new SqlConnection("context connection=true"))
  {
    connection.Open();

    SqlCommand command = new SqlCommand(
      "SELECT VendorID, AccountNumber, Name FROM Purchasing.Vendor " +
      "WHERE CreditRating <= @rating", connection);
    command.Parameters.AddWithValue("@rating", rating);

    // Execute the command and send the results directly to the client.
    SqlContext.Pipe.ExecuteAndSend(command);

  }
以上存儲過程的執行結果怎麼樣在ASP.NET2.0應用程序端來調用?

如果想把以上存儲過程的返回結果體現在DataList控件中,應用程序端的調用代碼是什麼樣的?

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved