public class DataSourceWrapper extends Object implements DataSource
A simple DataSource wrapper for the standard
DriverManager class.
| Constructor and Description |
|---|
DataSourceWrapper() |
| Modifier and Type | Method and Description |
|---|---|
Connection |
getConnection()
Returns a Connection using the DriverManager and all
set properties.
|
Connection |
getConnection(String username,
String password)
Always throws a SQLException.
|
int |
getLoginTimeout()
Always throws a SQLException.
|
PrintWriter |
getLogWriter()
Always throws a SQLException.
|
Logger |
getParentLogger() |
boolean |
isWrapperFor(Class c) |
void |
setDriverClassName(String driverClassName) |
void |
setJdbcURL(String jdbcURL) |
void |
setLoginTimeout(int seconds)
Always throws a SQLException.
|
void |
setLogWriter(PrintWriter out)
Always throws a SQLException.
|
void |
setPassword(String password) |
void |
setUserName(String userName) |
Object |
unwrap(Class c) |
public void setDriverClassName(String driverClassName) throws ClassNotFoundException, InstantiationException, IllegalAccessException
public void setJdbcURL(String jdbcURL)
public void setUserName(String userName)
public void setPassword(String password)
public Connection getConnection() throws SQLException
getConnection in interface DataSourceSQLExceptionpublic Connection getConnection(String username, String password) throws SQLException
getConnection in interface DataSourceSQLExceptionpublic int getLoginTimeout()
throws SQLException
getLoginTimeout in interface CommonDataSourceSQLExceptionpublic Logger getParentLogger()
getParentLogger in interface CommonDataSourcepublic PrintWriter getLogWriter() throws SQLException
getLogWriter in interface CommonDataSourceSQLExceptionpublic void setLoginTimeout(int seconds)
throws SQLException
setLoginTimeout in interface CommonDataSourceSQLExceptionpublic void setLogWriter(PrintWriter out) throws SQLException
setLogWriter in interface CommonDataSourceSQLExceptionpublic boolean isWrapperFor(Class c) throws SQLException
isWrapperFor in interface WrapperSQLExceptionpublic Object unwrap(Class c) throws SQLException
unwrap in interface WrapperSQLExceptionCopyright © 2001-2014 The Apache Software Foundation. All Rights Reserved.