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