ADO.NET Provider for MongoDB

Build 23.0.8839

DataAdapter を使用したクエリ

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

MongoDBDataAdapter の使用

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

次の例は、Customers テーブルのCity カラムとCompanyName カラムを選択します。

C#

string connectionString = "Server=127.0.0.1;Port=27017;Database=test;User=test;Password=test;";

using (MongoDBConnection connection = new MongoDBConnection(connectionString)) {
  MongoDBDataAdapter dataAdapter = new MongoDBDataAdapter(
  "SELECT City, CompanyName FROM [CData].[Sample].Customers", connection);

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

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

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

VB.NET

Dim connectionString As String = "Server=127.0.0.1;Port=27017;Database=test;User=test;Password=test;"

Using connection As New MongoDBConnection(connectionString)
  Dim dataAdapter As New MongoDBDataAdapter("SELECT City, CompanyName FROM [CData].[Sample].Customers", connection)

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

  Console.WriteLine("Contents of Customers.")

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

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