DataAdapter を使用したクエリ
CData ADO.NET Provider for Avro では、次の2つのネイティブ.NET インターフェースを使用して、Avro からデータを取得できます。AvroDataAdapter オブジェクトおよびAvroDataReader オブジェクト。各オブジェクトは同じタスク(データの取得)を実行しますが、実行方法が異なります。AvroDataAdapter オブジェクトはクエリに一致するすべてのデータを取得しますが、AvroDataReader オブジェクトは必要に応じてインクリメントしながら一部のデータだけをフェッチします。
AvroDataAdapter の使用
アダプターのFill メソッドを使用して、データソースからデータを取得します。空のDataTable インスタンスがFill メソッドへの引数として渡されます。このメソッドが戻ってきたとき、DataTable インスタンスにはクエリされたデータが設定されています。Fill メソッドは、戻る前にデータソースからすべてのデータを取得する必要があるため、AvroDataAdapter はAvroDataReader よりも時間がかかります。
次の例は、SampleTable_1 テーブルのId カラムとColumn1 カラムを選択します。
C#
string connectionString = "URI=C:\folder\table.avro;";
using (AvroConnection connection = new AvroConnection(connectionString)) {
AvroDataAdapter dataAdapter = new AvroDataAdapter(
"SELECT Id, Column1 FROM SampleTable_1", connection);
DataTable table = new DataTable();
dataAdapter.Fill(table);
Console.WriteLine("Contents of SampleTable_1.");
foreach (DataRow row in table.Rows) {
Console.WriteLine("{0}: {1}", row["Id"], row["Column1"]);
}
}
VB.NET
Dim connectionString As String = "URI=C:\folder\table.avro;"
Using connection As New AvroConnection(connectionString)
Dim dataAdapter As New AvroDataAdapter("SELECT Id, Column1 FROM SampleTable_1", connection)
Dim table As New DataTable()
dataAdapter.Fill(table)
Console.WriteLine("Contents of SampleTable_1.")
For Each row As DataRow In table.Rows
Console.WriteLine("{0}: {1}", row("Id"), row("Column1"))
Next
End Using