ノーコードでクラウド上のデータとの連携を実現。
詳細はこちら →30日間の無償トライアル
無償トライアルはこちら製品の詳細
Basecamp ODBC Driver は、ODBC 接続をサポートするさまざまなアプリケーションからBasecamp のリアルタイムデータ連携を実現するパワフルなツールです。
RDB にアクセスするときと同感覚でBasecamp にアクセスし、標準ODBC Driver インターフェースを通じて読み出し、書き込み、更新が可能に。
こんにちは!ドライバー周りのヘルプドキュメントを担当している古川です。
The CData ODBC Driver for Basecamp can be used from any platform or development technology that supports ODBC, including Sybase PowerBuilder. This article shows how to connect to Basecamp データ 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 Basecamp. In the Database Painter, you can use wizards and the UI to work with Basecamp データ.
Basecamp はBasic 認証もしくはOAuth 2.0 認証を使います。Basic 認証を使用するには、Basecamp へのログインに使用するuser およびpassword が必要です。OAuth 2.0 を使用して認証するには、Basecamp にアプリを登録してOAuthClientId、OAuthClientSecret、およびCallbackURL 接続プロパティを取得する必要があります。
詳しくは、ヘルプドキュメントの「はじめに」セクションを参照してください。
さらに、AccountId 接続プロパティを設定する必要があります。これはBasecamp にログイン後にURL で確認できます。
See the help documentation for a guide to creating a Basecamp DSN.You can use standard PowerBuilder objects to connect to ODBC data sources and execute queries. The following example shows how to retrieve Basecamp データ into a DataWindow. You can add the following code to the open method:
SQLCA.DBMS = "ODBC"
SQLCA.DBParm = "ConnectString='DSN=CData Basecamp Source'"
CONNECT USING SQLCA;
dw_projects.SetTransObject(SQLCA);
dw_projects.Retrieve();