SqlPipe 类
C# 제조대화
[Microsoft.SqlServer.Server.SqlProcedure()]
공개 정적 무효 StoredProcExecuteCommand(정수 등급)
{
//컨텍스트 연결을 통해 연결합니다.
(SqlConnection 연결 = new SqlConnection("컨텍스트 연결=true")) 사용
{
연결.열기();
SqlCommand 명령 = 새 SqlCommand(
"Purchasing.Vendor에서 VendorID, AccountNumber, 이름을 선택하세요." +
"WHERE CreditRating <= @rated", 연결);
command.Parameters.AddWithValue("@ating", rating);
// 명령을 실행하고 결과를 클라이언트에 직접 보냅니다.
SqlContext.Pipe.ExecuteAndSend(명령);
}
ASP.NET 2.0에서 어떤 용도로든 사용할 수 있나요?
DataList控件中,应用程序端의 调用代码是什么样는