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