ノーコードでクラウド上のデータとの連携を実現。
詳細はこちら →30日間の無償トライアル
無償トライアルはこちら製品の詳細
AvaTax ODBC Driver を使って、ODBC 接続をサポートするあらゆるアプリケーション・ツールからAvaTax にデータ連携。
AvaTax データにデータベースと同感覚でアクセスして、AvaTax のAccounts、Customers、TaxCodes、Transations に使い慣れたODBC インターフェースで双方向連携。
古川えりか
コンテンツスペシャリスト
こんにちは!ドライバー周りのヘルプドキュメントを担当している古川です。
The CData ODBC Driver for AvalaraAvatax can be used from any platform or development technology that supports ODBC, including Sybase PowerBuilder. This article shows how to connect to Avalara AvaTax データ 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 AvalaraAvatax. In the Database Painter, you can use wizards and the UI to work with Avalara AvaTax データ.
Basic 認証を実行する通常の方法は、次のログイン資格情報を提供することです。
サンドボックス環境を使用している場合には、オプションで次を設定してください。
または、アカウント番号とライセンスキーを使用して認証することもできます。次を使用してデータに接続します。
You can use standard PowerBuilder objects to connect to ODBC data sources and execute queries. The following example shows how to retrieve Avalara AvaTax データ into a DataWindow. You can add the following code to the open method:
SQLCA.DBMS = "ODBC"
SQLCA.DBParm = "ConnectString='DSN=CData Avalara AvaTax Source'"
CONNECT USING SQLCA;
dw_transactions.SetTransObject(SQLCA);
dw_transactions.Retrieve();