次の方法で共有


ExecuteReader メソッド (String, SqlCommand)

1 つ以上の結果セットを格納した SqlDataReader オブジェクト値を使用してリーダーを実行します。

名前空間:  Microsoft.SqlServer.Management.Common
アセンブリ:  Microsoft.SqlServer.ConnectionInfo (Microsoft.SqlServer.ConnectionInfo.dll)

構文

'宣言
Public Function ExecuteReader ( _
    sqlCommand As String, _
    <OutAttribute> ByRef command As SqlCommand _
) As SqlDataReader
'使用
Dim instance As ServerConnection
Dim sqlCommand As String
Dim command As SqlCommand
Dim returnValue As SqlDataReader

returnValue = instance.ExecuteReader(sqlCommand, _
    command)
public SqlDataReader ExecuteReader(
    string sqlCommand,
    out SqlCommand command
)
public:
SqlDataReader^ ExecuteReader(
    String^ sqlCommand, 
    [OutAttribute] SqlCommand^% command
)
member ExecuteReader : 
        sqlCommand:string * 
        command:SqlCommand byref -> SqlDataReader 
public function ExecuteReader(
    sqlCommand : String, 
    command : SqlCommand
) : SqlDataReader

パラメーター

  • command
    型: System.Data.SqlClient. . :: . .SqlCommand%
    SqlDataReader パイプを取り消して実行時間の長いコマンドを終了するために使用できる、SqlCommand オブジェクトです。

戻り値

型: System.Data.SqlClient. . :: . .SqlDataReader
1 つ以上の結果セットを格納する SqlDataReader オブジェクト値です。

説明

SqlDataReader オブジェクトが返され、クライアントはすべての情報をメモリに読み込まなくてもデータを処理できるようになります。