ADO.NET Provider for Google Directory

Build 23.0.8839

DataAdapter を使用したクエリ

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

GoogleDirectoryDataAdapter の使用

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

次の例は、Group テーブルのName カラムとEmail カラムを選択します。

C#

string connectionString = "InitiateOAuth=GETANDREFRESH;";

using (GoogleDirectoryConnection connection = new GoogleDirectoryConnection(connectionString)) {
  GoogleDirectoryDataAdapter dataAdapter = new GoogleDirectoryDataAdapter(
  "SELECT Name, Email FROM Group", connection);

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

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

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

VB.NET

Dim connectionString As String = "InitiateOAuth=GETANDREFRESH;"

Using connection As New GoogleDirectoryConnection(connectionString)
  Dim dataAdapter As New GoogleDirectoryDataAdapter("SELECT Name, Email FROM Group", connection)

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

  Console.WriteLine("Contents of Group.")

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

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