- ODBC Drivers
- Java JDBC Drivers
- ADO.NET Providers
- SQL SSIS Components
- BizTalk Adapters
- Excel Add-Ins
- Power BI Connectors
- Tableau Connectors
- PowerShell Cmdlets
- Delphi & C++Builder
- Data Sync
- API Server
Connect to Microsoft Planner Data from PowerBuilder
This article demonstrates how to use the CData ODBC Driver for Microsoft Planner to connect to Microsoft Planner data and execute queries in PowerBuilder.The CData ODBC Driver for Microsoft Planner can be used from any platform or development technology that supports ODBC, including Sybase PowerBuilder. This article shows how to connect to Microsoft Planner data and execute queries from the Database Painter and controls such as the DataWindow.
※製品について詳しい情報をご希望の方は以下からお進みください。
- Microsoft Planner にほかのBI、ETL、開発ツールから接続したい:Microsoft Planner データ連携ガイドおよびチュートリアルのリストへ
- Microsoft Planner Drivers について詳細を知りたい:ドライバー詳細情報ページへ
- ほかのデータソースに連携したい:CData Drivers 一覧へ
- ドライバーの30日の無償トライアル版を使いたい:トライアル版ダウンロードページへ
- 製品の利用やライセンスについて相談したい:sales@cdata.co.jp までメールにてご相談ください。
Create a Profile for the ODBC Driver for Microsoft Planner
Follow the steps below to use the Database Painter tool to create a database profile based on an ODBC DSN (data source name) for Microsoft Planner. In the Database Painter, you can use wizards and the UI to work with Microsoft Planner data.
- If you have not already done so, create an ODBC DSN for Microsoft Planner. The DSN contains the connection properties required to connect to Microsoft Planner data. You can use the Microsoft ODBC Data Source Administrator to create and configure DSNs. This is the last step of installing the driver.
Required connection properties are the following:
- OAuthClientId
- OAuthClientSecret
- CallbackURL
ユーザー資格情報の接続プロパティを設定せずに接続できます。接続に最小限必要な接続プロパティは、以下のとおりです。
- InitiateOAuth: GETANDREFRESH に設定。
- Tenant (optional): デフォルトと異なるテナントに認証したい場合は、これを設定します。これは、デフォルトのテナントに所属していない組織と連携するために必要です。
接続すると、本製品はデフォルトブラウザでOAuth エンドポイントを開きます。ログインして、本製品にアクセス許可を与えます。本製品がOAuth プロセスを完了します。
See the help documentation for a guide to creating a Microsoft Planner DSN. - In PowerBuilder, click Tools -> Database Painter.
- In the Objects window in the Database Painter, right-click the ODBC node and click New Profile.
- On the Connection tab, enter a name for the profile and select the Microsoft Planner DSN in the Data Source menu.
- To view and modify a table, right-click a table and then click Edit Data -> Grid.

Using Microsoft Planner Data with PowerBuilder Controls
You can use standard PowerBuilder objects to connect to ODBC data sources and execute queries. The following example shows how to retrieve Microsoft Planner data into a DataWindow. You can add the following code to the open method:
SQLCA.DBMS = "ODBC"
SQLCA.DBParm = "ConnectString='DSN=CData Microsoft Planner Source'"
CONNECT USING SQLCA;
dw_tasks.SetTransObject(SQLCA);
dw_tasks.Retrieve();