製品をチェック

無償トライアル:

無償トライアルへ

製品の情報と無償トライアルへ:

SASxpt JDBC Driver

SAS xpt (XPORT) ファイルデータを組み込んだパワフルなJava アプリケーションを短時間・低コストで作成して配布できます。

データ連携でお困りですか?

お問い合わせ

Connect to SAS xpt from a Connection Pool in WebLogic


Use the CData JDBC Driver for SASXpt to connect to SAS xpt data from Web applications running on WebLogic.


sasxpt ロゴ画像
jdbc ロゴ画像

JDBC

WebLogic

The CData JDBC Driver for SASXpt enables you to follow standard procedures to integrate SAS xpt data into Java Web applications. This article shows how to deploy the CData JDBC Driver for SASXpt in WebLogic server.

Install the JDBC Driver in WebLogic Server

Add the driver JAR and license file to the classpath your application will be using. The .lic file must be located in the same folder as the JAR. These files are located in the lib subfolder of the installation directory.

If you want to add the driver to all domains, add the JAR to the WEBLOGIC_CLASSPATH environment variable. add the following line to the commEnv.cmd/sh script in WL_HOME\common\bin\.

set WEBLOGIC_CLASSPATH=your-installation-directory\lib\cdata.jdbc.sasxpt.jar;%WEBLOGIC_CLASSPATH%

If you want to add the driver to a specific domain, you will need to add the JAR to the PRE_CLASSPATH environment variable. Add the following line to the setDomainEnv.cmd/sh script in the bin subfolder of the folder for that domain:

set PRE_CLASSPATH=your-installation-directory\lib\cdata.jdbc.sasxpt.jar;%PRE_CLASSPATH%

Create a JDBC Data Source for SASXpt

After installing the driver, create the connection.

  1. In the Domain Structure tree, click Services -> Data Sources -> New -> Generic Data Source.
  2. On the JDBC Data Source Properties page, enter the following information:
    • Name: Enter a user-friendly name; for example, sasxptjdbc.
    • JDBC Name: Enter the path the JDBC data source will be bound to; for example, jdbc/SASXpt.
    • Database Type: Select Other.

    A user-friendly name and the path to bind to. (Salesforce is shown.)
  3. Click Next to use the default options. On the last page, enter the following information and click Test Configuration:

    • Driver Class Name: Enter the driver class, cdata.jdbc.sasxpt.SASXptDriver, in this property.
    • URL: Enter the JDBC URL. A typical JDBC URL is below:

      jdbc:sasxpt:URI=C:/folder;

      ローカルSASXpt ファイルへの接続

      URI をSASXpt ファイルを格納しているフォルダに設定すると、ローカルのSASXpt ファイルに接続できます。

      S3 データソースへの接続

      Amazon S3 ソースに接続してSASXpt ファイルを読み込むことができます。以下のプロパティを設定して接続します:

      • URI:接続するバケット内のフォルダに設定。
      • AWSAccessKey:AWS アカウントのアクセスキーに設定。
      • AWSSecretKey:AWS アカウントのシークレットキーに設定。
      • TemporaryLocalFolder:SASXptファイルを一時的にダウンロードするために使用するフォルダへのパス、またはURI に設定。

      Azure Data Lake Storage Gen2 への接続

      ADLS Gen2 に接続してSASXpt ファイルを読み込むことができます。以下のプロパティを設定して接続します:

      • URI:ファイルシステムの名前およびSASXpt ファイルにコンタクトするフォルダの名前に設定。
      • AzureAccount:Azure Data Lake storage アカウントの名前に設定。
      • AzureAccessKey:Azure Data Lake storage Gen 2 ストレージアカウントのアクセスキーに設定。
      • TemporaryLocalFolder:SASXptファイルを一時的にダウンロードするために使用するフォルダへのパス、またはURI に設定。

    • Database User Name: Enter the username, if not specified in the JDBC URL.
    • Password: Enter the password, if not specified in the JDBC URL.
    Driver connection properties. (Salesforce is shown.)

After selecting the server where you want to deploy the JDBC data source, you can now connect to SAS xpt data.

The data source deployed on the target server and enabled for connection pooling. (Salesforce is shown.)

More WebLogic Integration

The steps above show how configure the driver in a simple connection pooling scenario. For more use cases and information, see the JDBC sections in the WebLogic Data Sources chapter of the Oracle Fusion Middleware documentation.