接続の確立
JDBC データソースの作成
Java アプリケーションから接続するJDBC データソースを作成できます。CData JDBC Driver for SAP Fieldglass に基づくJDBC データソースの作成は、3つの基本ステップで構成されます。
- ドライバーのJAR ファイルをクラスパスに追加します。JAR ファイルはインストールディレクトリの[lib]サブフォルダ内にあります。.lic ファイルはJAR ファイルと同じフォルダ内に配置される必要があることに注意してください。
- ドライバークラスを入力します。次に例を示します。
cdata.jdbc.sapfieldglass.SAPFieldglassDriver
- JDBC URL を入力します。次に例を示します。
jdbc:sapfieldglass:EnvironmentURL='https://myinstance.com';OAuthClientId=clientId;OAuthClientSecret=clientSecret;APIKey=xxxxxxxx-xxxx-xxxx-xxxx; or jdbc:cdata:sapfieldglass:EnvironmentURL='https://myinstance.com';OAuthClientId=clientId;OAuthClientSecret=clientSecret;APIKey=xxxxxxxx-xxxx-xxxx-xxxx;
上記の2つ目の形式は、同じURL 形式を使用しているドライバー間でアプリケーションに競合がある場合は、CData ドライバーを使用していることを確認するために常に使用できます。URL は "jdbc:sapfieldglass:" または"jdbc:cdata:sapfieldglass:" のいずれかから始まり、任意の接続プロパティの名前と値のペアをセミコロン区切りで入力します。
Obtaining Your Credentials
Please contact your SAP Fieldglass representative to obtain an OAuthClientId, OAuthClientSecret, and EnvironmentURL.
Connecting to SAP Fieldglass
To authenticate to production environments, specify the following:
- APIKey: Your SAP Fieldglass API Key. To obtain this, log in to the SAP Fieldglass Integration Tools and click Create API Application Key.
- OAuthClientId: The OAuth Client Id that you obtained from your SAP Fieldglass representative.
- OAuthClientSecret: OAuth Client Secret that you obtained from your SAP Fieldglass representative.
- EnvironmentURL: The SAP Fieldglass Environment URL that you obtained from your SAP Fieldglass representative.