ノーコードでクラウド上のデータとの連携を実現。
詳細はこちら →無償トライアル:
無償トライアルへ製品の情報と無償トライアルへ:
SAP HANA XS Advanced ODBC Driver を使って、ODBC 接続をサポートするあらゆるアプリケーション・ツールからSAP HANA XS Advanced にデータ連携。
SAP HANA XS Advanced データにデータベースと同感覚でアクセスして、SAP HANA XS Advanced データに使い慣れたODBC インターフェースで双方向連携。
古川えりか
コンテンツスペシャリスト
The CData ODBC Driver for SAPHanaXSA can be used from any platform or development technology that supports ODBC, including Sybase PowerBuilder. This article shows how to connect to SAP HANA XS Advanced 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 SAPHanaXSA. In the Database Painter, you can use wizards and the UI to work with SAP HANA XS Advanced data.
SAP HANA XSA uses the OAuth authentication standard. Before connecting, it is necessary to establish an SAP HANA XSA OData Service. See the OAuth section in the Help documentation for a guide.
See the help documentation for a guide to creating a SAP HANA XS Advanced DSN.You can use standard PowerBuilder objects to connect to ODBC data sources and execute queries. The following example shows how to retrieve SAP HANA XS Advanced data into a DataWindow. You can add the following code to the open method:
SQLCA.DBMS = "ODBC"
SQLCA.DBParm = "ConnectString='DSN=CData SAP HANA XS Advanced Source'"
CONNECT USING SQLCA;
dw_.SetTransObject(SQLCA);
dw_.Retrieve();