- ODBC Drivers
- Java JDBC Drivers
- ADO.NET Providers
- SQL SSIS Components
- BizTalk Adapters
- Excel Add-Ins
- Power BI Connectors
- Tableau Connectors
- PowerShell Cmdlets
- Delphi & C++Builder
- Data Sync
- API Server
IntelliJ からFinancialForce データに連携
IntelliJ のウィザードを使用してFinancialForce への接続を統合します。
CData JDBC Driver for FinancialForce を使用することで、JDBC データソースとしてFinancialForce にアクセスでき、IDE の迅速な開発ツールとの統合が可能になります。この記事では、データソース構成ウィザードを使用してIntelliJ のFinancialForce に接続する方法を示します。
※製品について詳しい情報をご希望の方は以下からお進みください。
- FinancialForce にほかのBI、ETL、開発ツールから接続したい:FinancialForce データ連携ガイドおよびチュートリアルのリストへ
- FinancialForce Drivers について詳細を知りたい:ドライバー詳細情報ページへ
- ほかのデータソースに連携したい:CData Drivers 一覧へ
- ドライバーの30日の無償トライアル版を使いたい:トライアル版ダウンロードページへ
- 製品の利用やライセンスについて相談したい:sales@cdata.co.jp までメールにてご相談ください。
JBDC Data Source for FinancialForce の作成
以下のステップに従ってドライバーJAR を追加し、FinancialForce への接続に必要な接続プロパティを定義します。
- [Data Sources]ウィンドウで右クリックし、[Add Data Source]->[DB Data Source]と進みます。
表示される[Data Source Properties]ダイアログでは、次のプロパティが必要です。
- JDBC Driver Files:このメニューの隣にあるボタンをクリックし、インストールディレクトリのJDBC ドライバーファイル(cdata.jdbc.financialforce.jar)を追加します。
- JDBC Driver Class:このメニューで、リストからcdata.jdbc.financialforce.FinancialForce ドライバーを選択します。
Database URL:JDBC URL プロパティで接続URL を入力します。URL は、jdbc:financialforce: で始まり、セミコロンで区切られた接続プロパティが含まれています。
There are several authentication methods available for connecting to FinancialForce: login credentials, SSO, and OAuth.
Authenticating with a Login and Token
Set the User and Password to your login credentials. Additionally, set the SecurityToken. By default, the SecurityToken is required, but you can make it optional by allowing a range of trusted IP addresses.
To disable the security token:
- Log in to FinancialForce and enter "Network Access" in the Quick Find box in the setup section.
- Add your IP address to the list of trusted IP addresses.
To obtain the security token:
- Open the personal information page on FinancialForce.com.
- Click the link to reset your security token. The token will be emailed to you.
- Specify the security token in the SecurityToken connection property or append it to the Password.
Authenticating with OAuth
If you do not have access to the user name and password or do not want to require them, use the OAuth user consent flow. See the OAuth section in the Help for an authentication guide.
Connecting to FinancialForce Sandbox Accounts
Set UseSandbox to true (false by default) to use a FinancialForce sandbox account. Ensure that you specify a sandbox user name in User.
ビルトイン接続文字列デザイナ
JDBC URL の構成については、FinancialForce JDBC Driver に組み込まれている接続文字列デザイナを使用してください。JAR ファイルのダブルクリック、またはコマンドラインからJAR ファイルを実行します。
java -jar cdata.jdbc.financialforce.jar
接続プロパティを入力し、接続文字列をクリップボードにコピーします。
以下は一般的なJDBC URL です。
jdbc:financialforce:User=myUser;Password=myPassword;Security Token=myToken;InitiateOAuth=GETANDREFRESH

FinancialForce データの編集・保存
スキーマ情報を見つけるには、作成したデータソースを右クリックし、[Refresh Tables]をクリックします。 テーブルを右クリックし、[Open Tables Editor]をクリックして、テーブルをクエリします。 また、[Table Editor]でレコードを編集することもできます。
