ノーコードでクラウド上のデータとの連携を実現。
詳細はこちら →30日間の無償トライアル
無償トライアルはこちら製品の詳細
Bing Ads ODBC Driver は、ODBC 接続をサポートするさまざまなアプリケーションからBing Ads のリアルタイムデータ連携を実現するパワフルなツールです。
データベースにアクセスするのと同感覚でBing Ads データにアクセスします。標準ODBC Driver インターフェースを通じて、あらゆる種類のリアルタイムなパフォーマンスデータおよび分析データにアクセス。
こんにちは!ドライバー周りのヘルプドキュメントを担当している古川です。
The CData ODBC Driver for BingAds can be used from any platform or development technology that supports ODBC, including Sybase PowerBuilder. This article shows how to connect to Bing Ads データ and execute queries from the Database Painter and controls such as the DataWindow.
Follow the steps below to use the Database Painter tool to create a database profile based on an ODBC DSN (data source name) for BingAds. In the Database Painter, you can use wizards and the UI to work with Bing Ads データ.
Bing Ads API はOAuth 2 標準を使用します。Bing Ads への認証には、有効なBing Ads OAuth 資格情報が必要です。また開発者トークンを取得する必要があります。詳しくは、ヘルプドキュメントの「はじめに」を参照してください。
See the help documentation for a guide to creating a Bing Ads DSN.You can use standard PowerBuilder objects to connect to ODBC data sources and execute queries. The following example shows how to retrieve Bing Ads データ into a DataWindow. You can add the following code to the open method:
SQLCA.DBMS = "ODBC"
SQLCA.DBParm = "ConnectString='DSN=CData Bing Ads Source'"
CONNECT USING SQLCA;
dw_adgroups.SetTransObject(SQLCA);
dw_adgroups.Retrieve();