JDBC Driver for Email

Build 23.0.8839

Code からの接続

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

DriverManager で接続

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

ドライバーのロード

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

接続の確立

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

Connection conn = DriverManager.getConnection("jdbc:email:Port=993;Server=outlook.office365.com;Password=password;User=user;Protocol=IMAP;SMTP Port=587;SMTP Server=smtp.office365.com;");
または、Properties オブジェクトを使用して接続オプションを準備できます。Properties オブジェクトをDriverManager に渡します。
Properties prop = new Properties();
prop.setProperty("Port","993");
prop.setProperty("Server","outlook.office365.com");
prop.setProperty("Password","password");
prop.setProperty("User","user");
prop.setProperty("Protocol","IMAP");
prop.setProperty("SMTP Port","587");
prop.setProperty("SMTP Server","smtp.office365.com");

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

EmailDataSource クラスで接続

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

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

EmailDataSource ds = new EmailDataSource("jdbc:email:UseConnectionPooling=true;Port=993;Server=outlook.office365.com;Password=password;User=user;Protocol=IMAP;SMTP Port=587;SMTP Server=smtp.office365.com;"); 
Connection conn = ds.getConnection();

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