Package cronapi.osjava.sj.loader
Class SJDataSource
- java.lang.Object
-
- cronapi.osjava.sj.loader.SJDataSource
-
- All Implemented Interfaces:
Wrapper,CommonDataSource,DataSource
public class SJDataSource extends Object implements DataSource
A basic implementation of a DataSource.
-
-
Constructor Summary
Constructors Constructor Description SJDataSource(String driver, String url, String username, String password, Properties properties)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)ConnectiongetConnection()ConnectiongetConnection(String username, String password)returns a connection to the database specified in the properties and creates a connection pool, if neccessaryintgetLoginTimeout()PrintWritergetLogWriter()LoggergetParentLogger()inthashCode()booleanisWrapperFor(Class<?> iface)voidsetLoginTimeout(int timeout)voidsetLogWriter(PrintWriter pw)StringtoString()<T> Tunwrap(Class<T> iface)-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface javax.sql.CommonDataSource
createShardingKeyBuilder
-
Methods inherited from interface javax.sql.DataSource
createConnectionBuilder
-
-
-
-
Constructor Detail
-
SJDataSource
public SJDataSource(String driver, String url, String username, String password, Properties properties)
-
-
Method Detail
-
getConnection
public Connection getConnection() throws SQLException
- Specified by:
getConnectionin interfaceDataSource- Throws:
SQLException
-
getConnection
public Connection getConnection(String username, String password) throws SQLException
returns a connection to the database specified in the properties and creates a connection pool, if neccessary- Specified by:
getConnectionin interfaceDataSource- Throws:
SQLException
-
getLogWriter
public PrintWriter getLogWriter() throws SQLException
- Specified by:
getLogWriterin interfaceCommonDataSource- Specified by:
getLogWriterin interfaceDataSource- Throws:
SQLException
-
getLoginTimeout
public int getLoginTimeout() throws SQLException- Specified by:
getLoginTimeoutin interfaceCommonDataSource- Specified by:
getLoginTimeoutin interfaceDataSource- Throws:
SQLException
-
getParentLogger
public Logger getParentLogger() throws SQLFeatureNotSupportedException
- Specified by:
getParentLoggerin interfaceCommonDataSource- Throws:
SQLFeatureNotSupportedException
-
setLogWriter
public void setLogWriter(PrintWriter pw) throws SQLException
- Specified by:
setLogWriterin interfaceCommonDataSource- Specified by:
setLogWriterin interfaceDataSource- Throws:
SQLException
-
setLoginTimeout
public void setLoginTimeout(int timeout) throws SQLException- Specified by:
setLoginTimeoutin interfaceCommonDataSource- Specified by:
setLoginTimeoutin interfaceDataSource- Throws:
SQLException
-
isWrapperFor
public boolean isWrapperFor(Class<?> iface) throws SQLException
- Specified by:
isWrapperForin interfaceWrapper- Throws:
SQLException
-
unwrap
public <T> T unwrap(Class<T> iface) throws SQLException
- Specified by:
unwrapin interfaceWrapper- Throws:
SQLException
-
-