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