ノーコードでクラウド上のデータとの連携を実現。
詳細はこちら →30日間の無償トライアル
無償トライアルはこちら製品の詳細
Sage 50 UK ODBC ドライバーは、ODBC 接続をサポートする任意のアプリケーションからリアルタイムなSage 50 UK データに直接接続できるパワフルなツールです。標準のODBC ドライバーインタフェースを使用して、データベースのようにSage データにアクセスし、Sage の顧客、トランザクション、請求書、販売レシートなどの読み、書き、更新を実行できます。
古川えりか
コンテンツスペシャリスト
こんにちは!ドライバー周りのヘルプドキュメントを担当している古川です。
The CData ODBC Driver for Sage50UK can be used from any platform or development technology that supports ODBC, including Sybase PowerBuilder. This article shows how to connect to Sage 50 UK データ 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 Sage50UK. In the Database Painter, you can use wizards and the UI to work with Sage 50 UK データ.
Note:Sage 50 UK 2012 以降のみサポートされています。
「接続」セクションのUser およびPassword プロパティを、有効なSage 50 UK のユーザー資格情報に設定する必要があります。これらの値は、Sage 50 UK に ログインするために使用するものと同じです。
さらに、「接続」セクションのURL プロパティを、希望する会社データセットのアドレスに設定する必要がります。アドレスを取得するには、以下を行ってください:
You can use standard PowerBuilder objects to connect to ODBC data sources and execute queries. The following example shows how to retrieve Sage 50 UK データ into a DataWindow. You can add the following code to the open method:
SQLCA.DBMS = "ODBC"
SQLCA.DBParm = "ConnectString='DSN=CData Sage 50 UK Source'"
CONNECT USING SQLCA;
dw_tradingaccounts.SetTransObject(SQLCA);
dw_tradingaccounts.Retrieve();