ADO.NET Provider for OData

Build 23.0.8839

DataAdapter を使用したクエリ

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

ODataDataAdapter の使用

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

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

C#

string connectionString = "User=myuseraccount;Password=mypassword;URL=http://myserver/myOrgRoot;";

using (ODataConnection connection = new ODataConnection(connectionString)) {
  ODataDataAdapter dataAdapter = new ODataDataAdapter(
  "SELECT Id, FullName FROM Lead", connection);

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

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

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

VB.NET

Dim connectionString As String = "User=myuseraccount;Password=mypassword;URL=http://myserver/myOrgRoot;"

Using connection As New ODataConnection(connectionString)
  Dim dataAdapter As New ODataDataAdapter("SELECT Id, FullName FROM Lead", connection)

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

  Console.WriteLine("Contents of Lead.")

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

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