ADO.NET Provider for Google Campaign Manager

Build 23.0.8839

DataAdapter を使用したクエリ

CData ADO.NET Provider for Google Campaign Manager では、次の2つのネイティブ.NET インターフェースを使用して、Google Campaign Manager からデータを取得できます。GoogleCMDataAdapter オブジェクトおよびGoogleCMDataReader オブジェクト。各オブジェクトは同じタスク(データの取得)を実行しますが、実行方法が異なります。GoogleCMDataAdapter オブジェクトはクエリに一致するすべてのデータを取得しますが、GoogleCMDataReader オブジェクトは必要に応じてインクリメントしながら一部のデータだけをフェッチします。

GoogleCMDataAdapter の使用

アダプターのFill メソッドを使用して、データソースからデータを取得します。空のDataTable インスタンスがFill メソッドへの引数として渡されます。このメソッドが戻ってきたとき、DataTable インスタンスにはクエリされたデータが設定されています。Fill メソッドは、戻る前にデータソースからすべてのデータを取得する必要があるため、GoogleCMDataAdapter はGoogleCMDataReader よりも時間がかかります。

次の例は、CampaignPerformance テーブルのClicks カラムとDevice カラムを選択します。

C#

string connectionString = "InitiateOAuth=GETANDREFRESH;ProfileID=MyUserProfileID;";

using (GoogleCMConnection connection = new GoogleCMConnection(connectionString)) {
  GoogleCMDataAdapter dataAdapter = new GoogleCMDataAdapter(
  "SELECT Clicks, Device FROM CampaignPerformance", connection);

  DataTable table = new DataTable();
  dataAdapter.Fill(table);

  Console.WriteLine("Contents of CampaignPerformance.");

  foreach (DataRow row in table.Rows) {
    Console.WriteLine("{0}: {1}", row["Clicks"], row["Device"]);
  }
}

VB.NET

Dim connectionString As String = "InitiateOAuth=GETANDREFRESH;ProfileID=MyUserProfileID;"

Using connection As New GoogleCMConnection(connectionString)
  Dim dataAdapter As New GoogleCMDataAdapter("SELECT Clicks, Device FROM CampaignPerformance", connection)

  Dim table As New DataTable()
  dataAdapter.Fill(table)

  Console.WriteLine("Contents of CampaignPerformance.")

  For Each row As DataRow In table.Rows
    Console.WriteLine("{0}: {1}", row("Clicks"), row("Device"))
  Next
End Using

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 23.0.8839