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