ノーコードでクラウド上のデータとの連携を実現。
詳細はこちら →無償トライアル:
無償トライアルへ製品の情報と無償トライアルへ:
Exact Online ODBC ドライバーは、ODBC 接続をサポートする任意のアプリケーションからリアルタイムなExact Online データに直接接続できるパワフルなツールです。標準のODBC ドライバーインターフェースを使用して、データベースのようにExact Online にアクセスし、アカウント、事業部、営業案件などの読み、書き、更新を実行できます。
古川えりか
コンテンツスペシャリスト
The CData ODBC Driver for ExactOnline can be used from any platform or development technology that supports ODBC, including Sybase PowerBuilder. This article shows how to connect to Exact Online data 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 ExactOnline. In the Database Painter, you can use wizards and the UI to work with Exact Online data.
Exact Online はOAuth 認証標準を使用します。InitiateOAuth 接続プロパティはOAuth フローを容易にします。デフォルトではGETANDREFRESH です。埋め込みクレデンシャルを使用する、またはExact にOAuth アプリを登録して独自のクレデンシャルを取得することもできます。 OAuth 値に加え、Region を指定します。Division が設定されない場合は、デフォルトのDivision が使用されます。
詳しくは、ヘルプドキュメントの「はじめに」を参照してください。
See the help documentation for a guide to creating a Exact Online DSN.You can use standard PowerBuilder objects to connect to ODBC data sources and execute queries. The following example shows how to retrieve Exact Online data into a DataWindow. You can add the following code to the open method:
SQLCA.DBMS = "ODBC"
SQLCA.DBParm = "ConnectString='DSN=CData Exact Online Source'"
CONNECT USING SQLCA;
dw_accounts.SetTransObject(SQLCA);
dw_accounts.Retrieve();