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