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