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