DataCommand.Execute メソッド (String, DataCommandType, array<IVsDataParameter[], Int32)
パラメーターで指定されたコマンドを、オプションで実行し、返します。読み取り専用が発生します。
名前空間: Microsoft.VisualStudio.Data.Framework
アセンブリ: Microsoft.VisualStudio.Data.Framework (Microsoft.VisualStudio.Data.Framework.dll 内)
構文
'宣言
Public Overridable Function Execute ( _
command As String, _
commandType As DataCommandType, _
parameters As IVsDataParameter(), _
commandTimeout As Integer _
) As IVsDataReader
public virtual IVsDataReader Execute(
string command,
DataCommandType commandType,
IVsDataParameter[] parameters,
int commandTimeout
)
public:
virtual IVsDataReader^ Execute(
String^ command,
DataCommandType commandType,
array<IVsDataParameter^>^ parameters,
int commandTimeout
)
abstract Execute :
command:string *
commandType:DataCommandType *
parameters:IVsDataParameter[] *
commandTimeout:int -> IVsDataReader
override Execute :
command:string *
commandType:DataCommandType *
parameters:IVsDataParameter[] *
commandTimeout:int -> IVsDataReader
public function Execute(
command : String,
commandType : DataCommandType,
parameters : IVsDataParameter[],
commandTimeout : int
) : IVsDataReader
パラメーター
command
型 : String実行するデータ ソースに固有のコマンド。
commandType
型 : Microsoft.VisualStudio.Data.Services.SupportEntities.DataCommandTypecommand パラメーターの内容を解釈する方法を指定するコマンドの種類。 コマンドの種類が DataCommandType の列挙体の値または整数型の DataCommandType の列挙体にキャストを渡すことができるプロバイダーで定義したカスタム コマンドの種類で使用できます。
parameters
型 : array<Microsoft.VisualStudio.Data.Services.SupportEntities.IVsDataParameter[]IVsDataParameter を表すオブジェクトの配列の型指定されたコマンドのコマンド ライン パラメーター。
commandTimeout
型 : Int32実行をキャンセルし、呼び出し元に戻す前にクライアントをブロック時間 (秒単位)。 0 という値は、無限タイムアウトを示します; -1 という値はプロバイダーの既定を示します。
戻り値
型 : Microsoft.VisualStudio.Data.Services.SupportEntities.IVsDataReader
データ ソースの順方向でのみ、読み取り専用ストリームを生成する IVsDataReader オブジェクトです。
実装
IVsDataCommand.Execute(String, DataCommandType, array<IVsDataParameter[], Int32)
例外
例外 | 条件 |
---|---|
ArgumentNullException | command パラメーターが nullnull 参照 (Visual Basic では Nothing) です。 |
ArgumentOutOfRangeException | commandTimeout パラメーターが -1 未満です。 |
解説
または DataParameter オブジェクトの parameters の配列で指定された戻り値パラメーターは、返された IVsDataReader が終了した後にのみ取得することができます。 これは、データおよびパラメーター値がデータ ソースで返すことができるさまざまな順序を使用するためです。
注意
発生するそのほかの例外を派生プロバイダー パラメーターが指定された理由に失敗したことを示します。
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。