ADO.NET Provider for Shopify

Build 23.0.8839

DataAdapter を使用したクエリ

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

ShopifyDataAdapter の使用

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

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

C#

string connectionString = "InitiateOAuth=GETANDREFRESH;ShopUrl=https://yourshopname.myshopify.com;OAuthClientId=myoauthclientid;OAuthClientSecret=myoauthclientsecret;";

using (ShopifyConnection connection = new ShopifyConnection(connectionString)) {
  ShopifyDataAdapter dataAdapter = new ShopifyDataAdapter(
  "SELECT FirstName, Id FROM 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["FirstName"], row["Id"]);
  }
}

VB.NET

Dim connectionString As String = "InitiateOAuth=GETANDREFRESH;ShopUrl=https://yourshopname.myshopify.com;OAuthClientId=myoauthclientid;OAuthClientSecret=myoauthclientsecret;"

Using connection As New ShopifyConnection(connectionString)
  Dim dataAdapter As New ShopifyDataAdapter("SELECT FirstName, Id FROM 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("FirstName"), row("Id"))
  Next
End Using

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