ノーコードでクラウド上のデータとの連携を実現。
詳細はこちら →無償トライアル:
無償トライアルへ製品の情報と無償トライアルへ:
Marketo ODBC ドライバーは、ODBC 接続をサポートする任意のアプリケーションからリアルタイムなMarketo データに直接接続できるパワフルなツールです。標準のODBC ドライバーインタフェースを使用して、データベースのようにMarketo にアクセスし、潜在顧客、営業案件、チャンネル、キャンペーンなどの読み、書き、更新を実行できます。
古川えりか
コンテンツスペシャリスト
The CData ODBC Driver for Marketo can be used from any platform or development technology that supports ODBC, including Sybase PowerBuilder. This article shows how to connect to Marketo data 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 Marketo. In the Database Painter, you can use wizards and the UI to work with Marketo data.
REST およびSOAP API の両方をサポートしています。Schema プロパティで選択してください。
REST API: OAuth とREST セクションでOAuthClientId、OAuthClientSecret、RESTEndpoint プロパティを設定。
SOAP API: SOAP セクションでUserId、EncryptionKey、SOAPEndpoint プロパティを設定。
詳細はヘルプドキュメントの「はじめに」を参照してください。
See the help documentation for a guide to creating a Marketo DSN.You can use standard PowerBuilder objects to connect to ODBC data sources and execute queries. The following example shows how to retrieve Marketo data into a DataWindow. You can add the following code to the open method:
SQLCA.DBMS = "ODBC"
SQLCA.DBParm = "ConnectString='DSN=CData Marketo Source'"
CONNECT USING SQLCA;
dw_leads.SetTransObject(SQLCA);
dw_leads.Retrieve();