SqlDataReader.GetValues(Object[]) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オブジェクトの配列に現在行の列値を設定します。
public:
override int GetValues(cli::array <System::Object ^> ^ values);
public override int GetValues (object[] values);
override this.GetValues : obj[] -> int
Public Overrides Function GetValues (values As Object()) As Integer
パラメーター
戻り値
配列に含まれる Object のインスタンスの数。
実装
例
次の例では、正しいサイズの配列を使用して、指定された SqlDataReader内の現在の行からすべての値を読み取る方法を示します。 さらに、このサンプルでは、使用可能な列の数よりも小さいか大きくなる可能性がある固定サイズの配列を使用する方法を示します。
// using Microsoft.Data.SqlClient;
private static void TestGetValues(SqlDataReader reader)
{
// Given a SqlDataReader, use the GetValues
// method to retrieve a full row of data.
// Test the GetValues method, passing in an array large
// enough for all the columns.
Object[] values = new Object[reader.FieldCount];
int fieldCount = reader.GetValues(values);
Console.WriteLine("reader.GetValues retrieved {0} columns.",
fieldCount);
for (int i = 0; i < fieldCount; i++)
Console.WriteLine(values[i]);
Console.WriteLine();
// Now repeat, using an array that may contain a different
// number of columns than the original data. This should work correctly,
// whether the size of the array is larger or smaller than
// the number of columns.
// Attempt to retrieve three columns of data.
values = new Object[3];
fieldCount = reader.GetValues(values);
Console.WriteLine("reader.GetValues retrieved {0} columns.",
fieldCount);
for (int i = 0; i < fieldCount; i++)
Console.WriteLine(values[i]);
}
注釈
ほとんどのアプリケーションでは、このメソッドは、各列を個別に取得するのではなく、すべての列を取得するための効率的な手段を提供します。
結果の行に Object 含まれる列の数より少ない列を含む配列を渡すことができます。 配列が保持する Object データの量のみが配列にコピーされます。 また、長さが結果の行に Object 含まれる列の数を超える配列を渡すこともできます。
null データベース列の場合は、DBNull が返されます。