ADO.NET Provider for Greenhouse

Build 24.0.9062

DataAdapter を使用したクエリ

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

GreenhouseDataAdapter の使用

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

次の例は、Applications テーブルのId カラムとCandidateId カラムを選択します。

C#

string connectionString = "APIKey=YourAPIKey;";

using (GreenhouseConnection connection = new GreenhouseConnection(connectionString)) {
  GreenhouseDataAdapter dataAdapter = new GreenhouseDataAdapter(
  "SELECT Id, CandidateId FROM Applications", connection);

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

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

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

VB.NET

Dim connectionString As String = "APIKey=YourAPIKey;"

Using connection As New GreenhouseConnection(connectionString)
  Dim dataAdapter As New GreenhouseDataAdapter("SELECT Id, CandidateId FROM Applications", connection)

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

  Console.WriteLine("Contents of Applications.")

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

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