This article demonstrates how to use the CData ODBC Driver for Sage 50 UK to connect to Sage 50 UK data and execute queries in PowerBuilder.
The CData ODBC Driver for Sage 50 UK 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 data and execute queries from the Database Painter and controls such as the DataWindow.
※製品について詳しい情報をご希望の方は以下からお進みください。
- Sage 50 UK にほかのBI、ETL、開発ツールから接続したい:Sage 50 UK データ連携ガイドおよびチュートリアルのリストへ
- Sage 50 UK Drivers について詳細を知りたい:ドライバー詳細情報ページへ
- ほかのデータソースに連携したい:CData Drivers 一覧へ
- ドライバーの30日の無償トライアル版を使いたい:トライアル版ダウンロードページへ
- 製品の利用やライセンスについて相談したい:sales@cdata.co.jp までメールにてご相談ください。
Create a Profile for the ODBC Driver for Sage 50 UK
Follow the steps below to use the Database Painter tool to create a database profile based on an ODBC DSN (data source name) for Sage 50 UK. In the Database Painter, you can use wizards and the UI to work with Sage 50 UK data.
- If you have not already done so, create an ODBC DSN for Sage 50 UK. The DSN contains the connection properties required to connect to Sage 50 UK data. You can use the Microsoft ODBC Data Source Administrator to create and configure DSNs. This is the last step of installing the driver.
Required connection properties are the following:
- URL
- User
Note:Sage 50 UK 2012 以降のみサポートされています。
[接続]セクションのUser およびPassword プロパティを、有効なSage 50 UK のユーザー資格情報に設定する必要があります。これらの値は、Sage 50 UK に ログインするために使用するものと同じです。
さらに、[接続]セクションのURL プロパティを、希望する会社データセットのアドレスに設定する必要がります。アドレスを取得するには、以下を行ってください:
- Sage 50 UK ソフトウェアを開きます。
- [Tools]->[Internet Options]をクリックします。
- [SData Settings]タブを選択します。
- [Sage 50 Accounts]の隣にある[Details]ボタンをクリックします。会社名のリストとそれに対応するデータセットのアドレスを含むウィンドウが表示されます。
- URL プロパティを希望する会社の隣にあるアドレスフィールドの値に設定します。
- In PowerBuilder, click Tools -> Database Painter.
- In the Objects window in the Database Painter, right-click the ODBC node and click New Profile.
- On the Connection tab, enter a name for the profile and select the Sage 50 UK DSN in the Data Source menu.
- To view and modify a table, right-click a table and then click Edit Data -> Grid.

Using Sage 50 UK Data with PowerBuilder Controls
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 data 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();