JDBC Driver for SAP ByDesign

Build 23.0.8839

Code からの接続

このセクションでは、JDBC DriverManager またはSAPByDesignDataSource インターフェースに接続する方法について説明します。

DriverManager で接続

DriverManager クラスを使用して接続する場合、CData JDBC Driver for SAP ByDesign はJDBC 規則に従います。最初にSAPByDesign ドライバークラスをロードします。次に、接続を作成します。

ドライバーのロード

JDBC 4.0仕様では、次の手順はオプションです。
Class.forName("cdata.jdbc.sapbydesign.SAPByDesignDriver");

接続の確立

静的なDriverManager クラスのgetConnection メソッドで接続文字列を指定します。接続文字列を"jdbc:sapbydesign:" で始めます。一般的な接続文字列は以下のとおりです。

Connection conn = DriverManager.getConnection("jdbc:sapbydesign:URL=https://my999999.businessbydesign.cloud.sap;User=username;Password=password;ServiceType=AnalyticsService;ServiceName=servicename;");
または、Properties オブジェクトを使用して接続オプションを準備できます。Properties オブジェクトをDriverManager に渡します。
Properties prop = new Properties();
prop.setProperty("URL","https://my999999.businessbydesign.cloud.sap");
prop.setProperty("User","username");
prop.setProperty("Password","password");
prop.setProperty("ServiceType","AnalyticsService");
prop.setProperty("ServiceName","servicename");


Connection conn = DriverManager.getConnection("jdbc:sapbydesign:",prop);

SAPByDesignDataSource クラスで接続

以下の例に示すように、SAPByDesignDataSource クラスを使用してプールされた接続を作成できます。詳しくは、接続プール を参照してください。

次の例は、プールされたConnection オブジェクトをインスタンス化します。

SAPByDesignDataSource ds = new SAPByDesignDataSource("jdbc:sapbydesign:UseConnectionPooling=true;URL=https://my999999.businessbydesign.cloud.sap;User=username;Password=password;ServiceType=AnalyticsService;ServiceName=servicename;"); 
Connection conn = ds.getConnection();

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 23.0.8839