共用方式為


CommandType 屬性

Indicates or specifies how the CommandText property is interpreted (as text, a stored procedure, etc.).

命名空間:  Microsoft.ReportingServices.DataProcessing
組件:   Microsoft.ReportingServices.SharePoint.UI.WebParts (在 Microsoft.ReportingServices.SharePoint.UI.WebParts.dll 中)
  Microsoft.ReportingServices.Interfaces (在 Microsoft.ReportingServices.Interfaces.dll 中)

語法

'宣告
Property CommandType As CommandType
    Get
    Set
'用途
Dim instance As IDbCommand
Dim value As CommandType

value = instance.CommandType

instance.CommandType = value
CommandType CommandType { get; set; }
property CommandType CommandType {
    CommandType get ();
    void set (CommandType value);
}
abstract CommandType : CommandType with get, set
function get CommandType () : CommandType
function set CommandType (value : CommandType)

屬性值

型別:Microsoft.ReportingServices.DataProcessing. . :: . .CommandType
One of the CommandType values. The default is Text.

備註

When the CommandType property is set to StoredProcedure, set the CommandText property to the name of the stored procedure. The user may be required to use escape character syntax if the stored procedure name contains any special characters. The command will call this stored procedure when you call one of the Execute methods.