ノーコードでクラウド上のデータとの連携を実現。
詳細はこちら →30日間の無償トライアル
無償トライアルはこちら製品の詳細
Oracle Financials Clouds ODBC ドライバーは、ODBC 接続をサポートする任意のアプリケーションからリアルタイムなOracle Financials Clouds アカウントデータに直接接続できるパワフルなツールです。標準のODBC ドライバーインタフェースを使用して、データベースのようにOracle Financials Clouds データにアクセスし、読み、書き、更新を実行できます。
古川えりか
コンテンツスペシャリスト
こんにちは!ドライバー周りのヘルプドキュメントを担当している古川です。
The CData ODBC Driver for OracleERP can be used from any platform or development technology that supports ODBC, including Sybase PowerBuilder. This article shows how to connect to Oracle Financials Cloud データ 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 OracleERP. In the Database Painter, you can use wizards and the UI to work with Oracle Financials Cloud データ.
Oracle ERP への認証には、以下を設定する必要があります。
You can use standard PowerBuilder objects to connect to ODBC data sources and execute queries. The following example shows how to retrieve Oracle Financials Cloud データ into a DataWindow. You can add the following code to the open method:
SQLCA.DBMS = "ODBC"
SQLCA.DBParm = "ConnectString='DSN=CData Oracle Financials Cloud Source'"
CONNECT USING SQLCA;
dw_invoices.SetTransObject(SQLCA);
dw_invoices.Retrieve();