DataAdapter を使用したクエリ
CData ADO.NET Provider for ShipStation では、次の2つのネイティブ.NET インターフェースを使用して、ShipStation からデータを取得できます。ShipStationDataAdapter オブジェクトおよびShipStationDataReader オブジェクト。各オブジェクトは同じタスク(データの取得)を実行しますが、実行方法が異なります。ShipStationDataAdapter オブジェクトはクエリに一致するすべてのデータを取得しますが、ShipStationDataReader オブジェクトは必要に応じてインクリメントしながら一部のデータだけをフェッチします。
ShipStationDataAdapter の使用
アダプターのFill メソッドを使用して、データソースからデータを取得します。空のDataTable インスタンスがFill メソッドへの引数として渡されます。このメソッドが戻ってきたとき、DataTable インスタンスにはクエリされたデータが設定されています。Fill メソッドは、戻る前にデータソースからすべてのデータを取得する必要があるため、ShipStationDataAdapter はShipStationDataReader よりも時間がかかります。
次の例は、Tags テーブルのId カラムとColor カラムを選択します。
C#
string connectionString = "APIKey='YourAPIKey';APISecret='YourAPISecret'"; using (ShipStationConnection connection = new ShipStationConnection(connectionString)) { ShipStationDataAdapter dataAdapter = new ShipStationDataAdapter( "SELECT Id, Color FROM Tags", connection); DataTable table = new DataTable(); dataAdapter.Fill(table); Console.WriteLine("Contents of Tags."); foreach (DataRow row in table.Rows) { Console.WriteLine("{0}: {1}", row["Id"], row["Color"]); } }
VB.NET
Dim connectionString As String = "APIKey='YourAPIKey';APISecret='YourAPISecret'" Using connection As New ShipStationConnection(connectionString) Dim dataAdapter As New ShipStationDataAdapter("SELECT Id, Color FROM Tags", connection) Dim table As New DataTable() dataAdapter.Fill(table) Console.WriteLine("Contents of Tags.") For Each row As DataRow In table.Rows Console.WriteLine("{0}: {1}", row("Id"), row("Color")) Next End Using