org.seasar.doma.extension.gen
クラス SimpleDataSource

java.lang.Object
  上位を拡張 org.seasar.doma.extension.gen.SimpleDataSource
すべての実装されたインタフェース:
Wrapper, CommonDataSource, DataSource

public class SimpleDataSource
extends Object
implements DataSource

単純なデータソースです。

作成者:
taedium

フィールドの概要
protected  Driver driver
          JDBCドライバ
protected  String password
          データベースの接続パスワードです。
protected  Properties properties
          JDBCドライバへのプロパティです。
protected static String UNABLE_TO_ESTABLISH_CONNECTION
          コネクションが確立できない場合の SQLState コードです。
protected  String url
          jdbc:subprotocol:subnameという形式のデータベースへの接続URLです。
protected  String user
          データベースの接続ユーザーです。
 
コンストラクタの概要
SimpleDataSource()
           
 
メソッドの概要
 void addProperty(String key, String value)
          JDBCドライバへのプロパティを追加します。
 Connection getConnection()
           
 Connection getConnection(String user, String password)
           
protected  Connection getConnectionInternal(Properties info)
          内部的にコネクションを返します。
 Driver getDriver()
          JDBCドライバを返します。
 int getLoginTimeout()
           
 PrintWriter getLogWriter()
           
 String getPassword()
          データベースの接続パスワードを返します。
 String getUrl()
          データベースへの接続URLを返します。
 String getUser()
          データベースの接続ユーザーを返します。
 boolean isWrapperFor(Class<?> iface)
           
 void setDriver(Driver driver)
          JDBCドライバを設定します。
 void setLoginTimeout(int seconds)
           
 void setLogWriter(PrintWriter out)
           
 void setPassword(String password)
          データベースの接続パスワードを設定します。
 void setUrl(String url)
          データベースの接続URLを設定します。
 void setUser(String user)
          データベースの接続ユーザーを設定します。
<T> T
unwrap(Class<T> iface)
           
 
クラス java.lang.Object から継承されたメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

フィールドの詳細

UNABLE_TO_ESTABLISH_CONNECTION

protected static final String UNABLE_TO_ESTABLISH_CONNECTION
コネクションが確立できない場合の SQLState コードです。

関連項目:
定数フィールド値

driver

protected Driver driver
JDBCドライバ


url

protected String url
jdbc:subprotocol:subnameという形式のデータベースへの接続URLです。


user

protected String user
データベースの接続ユーザーです。


password

protected String password
データベースの接続パスワードです。


properties

protected final Properties properties
JDBCドライバへのプロパティです。

コンストラクタの詳細

SimpleDataSource

public SimpleDataSource()
メソッドの詳細

getDriver

public Driver getDriver()
JDBCドライバを返します。

戻り値:
JDBCドライバ

setDriver

public void setDriver(Driver driver)
JDBCドライバを設定します。

パラメータ:
driver - JDBCドライバ

getUrl

public String getUrl()
データベースへの接続URLを返します。

戻り値:
データベースへの接続URL

setUrl

public void setUrl(String url)
データベースの接続URLを設定します。

パラメータ:
url - jdbc:subprotocol:subnameという形式のデータベースへの接続URL

getUser

public String getUser()
データベースの接続ユーザーを返します。

戻り値:
データベースの接続ユーザー

setUser

public void setUser(String user)
データベースの接続ユーザーを設定します。

パラメータ:
user - データベースの接続ユーザー

getPassword

public String getPassword()
データベースの接続パスワードを返します。

戻り値:
データベースの接続パスワード

setPassword

public void setPassword(String password)
データベースの接続パスワードを設定します。

パラメータ:
password - データベースの接続パスワード

addProperty

public void addProperty(String key,
                        String value)
JDBCドライバへのプロパティを追加します。

パラメータ:
key - プロパティのキー
value - プロパティの値

getLoginTimeout

public int getLoginTimeout()
定義:
インタフェース CommonDataSource 内の getLoginTimeout

setLoginTimeout

public void setLoginTimeout(int seconds)
定義:
インタフェース CommonDataSource 内の setLoginTimeout

getConnection

public Connection getConnection()
                         throws SQLException
定義:
インタフェース DataSource 内の getConnection
例外:
SQLException

getConnection

public Connection getConnection(String user,
                                String password)
                         throws SQLException
定義:
インタフェース DataSource 内の getConnection
例外:
SQLException

getConnectionInternal

protected Connection getConnectionInternal(Properties info)
                                    throws SQLException
内部的にコネクションを返します。

パラメータ:
info - JDBCドライバへのプロパティ
戻り値:
コネクション
例外:
SQLException - SQLに関する例外が発生した場合

getLogWriter

public PrintWriter getLogWriter()
                         throws SQLException
定義:
インタフェース CommonDataSource 内の getLogWriter
例外:
SQLException

setLogWriter

public void setLogWriter(PrintWriter out)
                  throws SQLException
定義:
インタフェース CommonDataSource 内の setLogWriter
例外:
SQLException

isWrapperFor

public boolean isWrapperFor(Class<?> iface)
                     throws SQLException
定義:
インタフェース Wrapper 内の isWrapperFor
例外:
SQLException

unwrap

public <T> T unwrap(Class<T> iface)
         throws SQLException
定義:
インタフェース Wrapper 内の unwrap
例外:
SQLException


Copyright © 2009-2013 The Seasar Foundation. All Rights Reserved.