DataAdapter を使用したクエリ
CData ADO.NET Provider for Klaviyo では、次の2つのネイティブ.NET インターフェースを使用して、Klaviyo からデータを取得できます。KlaviyoDataAdapter オブジェクトおよびKlaviyoDataReader オブジェクト。各オブジェクトは同じタスク(データの取得)を実行しますが、実行方法が異なります。KlaviyoDataAdapter オブジェクトはクエリに一致するすべてのデータを取得しますが、KlaviyoDataReader オブジェクトは必要に応じてインクリメントしながら一部のデータだけをフェッチします。
KlaviyoDataAdapter の使用
アダプターのFill メソッドを使用して、データソースからデータを取得します。空のDataTable インスタンスがFill メソッドへの引数として渡されます。このメソッドが戻ってきたとき、DataTable インスタンスにはクエリされたデータが設定されています。Fill メソッドは、戻る前にデータソースからすべてのデータを取得する必要があるため、KlaviyoDataAdapter はKlaviyoDataReader よりも時間がかかります。
次の例は、SampleTable_1 テーブルのId カラムとColumn1 カラムを選択します。
C#
string connectionString = "InitiateOAuth=GETANDREFRESH;";
using (KlaviyoConnection connection = new KlaviyoConnection(connectionString)) {
KlaviyoDataAdapter dataAdapter = new KlaviyoDataAdapter(
"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 = "InitiateOAuth=GETANDREFRESH;"
Using connection As New KlaviyoConnection(connectionString)
Dim dataAdapter As New KlaviyoDataAdapter("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