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