IDbCommand.CommandType プロパティ
CommandText プロパティの解釈方法 (テキストまたはストアド プロシージャなどとして) を示すか、指定します。
名前空間: Microsoft.ReportingServices.DataProcessing
アセンブリ: Microsoft.ReportingServices.Interfaces (Microsoft.ReportingServices.Interfaces.dll)
Microsoft.ReportingServices.SharePoint.UI.WebParts (Microsoft.ReportingServices.SharePoint.UI.WebParts.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
CommandType 値の 1 つです。既定値は Text です。
説明
CommandType プロパティが StoredProcedure に設定されている場合は、CommandText プロパティをストアド プロシージャの名前に設定します。 ストアド プロシージャ名に特殊文字が含まれている場合、エスケープ文字構文を使用する必要があります。 Execute メソッドのいずれかを呼び出すと、コマンドによりこのストアド プロシージャが呼び出されます。