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