ノーコードでクラウド上のデータとの連携を実現。
詳細はこちら →30日間の無償トライアル
無償トライアルはこちら製品の詳細
Azure Synapse ODBC Driver を使って、ODBC 接続をサポートするあらゆるアプリケーション・ツールからAzure Synapse にデータ連携。
Azure Synapse データにデータベースと同感覚でアクセスして、Azure Synapse データに使い慣れたODBC インターフェースで双方向連携。
古川えりか
コンテンツスペシャリスト
こんにちは!ドライバー周りのヘルプドキュメントを担当している古川です。
The CData ODBC Driver for AzureSynapse can be used from any platform or development technology that supports ODBC, including Sybase PowerBuilder. This article shows how to connect to Azure Synapse データ 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 AzureSynapse. In the Database Painter, you can use wizards and the UI to work with Azure Synapse データ.
Azure Synapse データベースに接続するには、認証に加えて(下記参照)、次のプロパティを設定します。
次のプロパティを使用してAzure Synapse に接続します。
You can use standard PowerBuilder objects to connect to ODBC data sources and execute queries. The following example shows how to retrieve Azure Synapse データ into a DataWindow. You can add the following code to the open method:
SQLCA.DBMS = "ODBC"
SQLCA.DBParm = "ConnectString='DSN=CData Azure Synapse Source'"
CONNECT USING SQLCA;
dw_products.SetTransObject(SQLCA);
dw_products.Retrieve();