IDbCommand Interface
Represents a statement that is executed while an open connection to a data source exists.
네임스페이스: Microsoft.ReportingServices.DataProcessing
어셈블리: Microsoft.ReportingServices.Interfaces (in microsoft.reportingservices.interfaces.dll)
구문
‘선언
Public Interface IDbCommand
Inherits IDisposable
public interface IDbCommand : IDisposable
public interface class IDbCommand : IDisposable
public interface IDbCommand extends IDisposable
public interface IDbCommand extends IDisposable
주의
The IDbCommand interface enables you to implement a Command class, which represents a statement that is executed at a data source. For more information about Command classes, see Implementing a Command Class for a Data Processing Extension.
An application does not create an instance of the IDbCommand interface directly, but creates an instance of a class that implements IDbCommand.
Classes that implement IDbCommand must also implement all required members, and typically define additional members to add provider-specific functionality.
When you implement from the IDbCommand interface, you should implement the following constructors:
Item |
Description |
PrvCommand() |
Initializes a new instance of the PrvCommand class. |
PrvCommand(string cmdText) |
Initializes a new instance of the PrvCommand class with the text of the query. |
PrvCommand(string cmdText, PrvTransaction transaction) |
Initializes a new instance of the PrvCommand class with the text of the query, a PrvConnection, and the PrvTransaction. |
플랫폼
개발 플랫폼
지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.
대상 플랫폼
지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.
참고 항목
참조
IDbCommand Members
Microsoft.ReportingServices.DataProcessing Namespace