- java.lang.Object
-
- com.appslandia.common.base.InitializeObject
-
- com.appslandia.common.jdbc.DataSourceImpl
-
- All Implemented Interfaces:
InitializeSupport,Wrapper,CommonDataSource,DataSource
public class DataSourceImpl extends InitializeObject implements DataSource
- Author:
- Loc Ha
-
-
Constructor Summary
Constructors Constructor Description DataSourceImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ConnectiongetConnection()ConnectiongetConnection(String username, String password)intgetLoginTimeout()PrintWritergetLogWriter()LoggergetParentLogger()StringgetPassword()StringgetUrl()StringgetUserName()protected voidinit()booleanisWrapperFor(Class<?> iface)DataSourceImplload(File file)DataSourceImplload(InputStream is)DataSourceImplload(Reader r)DataSourceImplload(String file)DataSourceImplloadProps(Map<String,String> props)voidsetLoginTimeout(int seconds)voidsetLogWriter(PrintWriter out)DataSourceImplsetPassword(String password)DataSourceImplsetUrl(String url)DataSourceImplsetUserName(String userName)<T> Tunwrap(Class<T> iface)-
Methods inherited from class com.appslandia.common.base.InitializeObject
assertNotInitialized, destroy, initialize
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface javax.sql.CommonDataSource
createShardingKeyBuilder
-
Methods inherited from interface javax.sql.DataSource
createConnectionBuilder
-
-
-
-
Method Detail
-
init
protected void init() throws Exception- Specified by:
initin classInitializeObject- Throws:
Exception
-
getConnection
public Connection getConnection() throws SQLException
- Specified by:
getConnectionin interfaceDataSource- Throws:
SQLException
-
getConnection
public Connection getConnection(String username, String password) throws SQLException
- Specified by:
getConnectionin interfaceDataSource- Throws:
SQLException
-
getLoginTimeout
public int getLoginTimeout() throws SQLException- Specified by:
getLoginTimeoutin interfaceCommonDataSource- Specified by:
getLoginTimeoutin interfaceDataSource- Throws:
SQLException
-
getLogWriter
public PrintWriter getLogWriter() throws SQLException
- Specified by:
getLogWriterin interfaceCommonDataSource- Specified by:
getLogWriterin interfaceDataSource- Throws:
SQLException
-
getParentLogger
public Logger getParentLogger() throws SQLFeatureNotSupportedException
- Specified by:
getParentLoggerin interfaceCommonDataSource- Throws:
SQLFeatureNotSupportedException
-
isWrapperFor
public boolean isWrapperFor(Class<?> iface) throws SQLException
- Specified by:
isWrapperForin interfaceWrapper- Throws:
SQLException
-
setLoginTimeout
public void setLoginTimeout(int seconds) throws SQLException- Specified by:
setLoginTimeoutin interfaceCommonDataSource- Specified by:
setLoginTimeoutin interfaceDataSource- Throws:
SQLException
-
setLogWriter
public void setLogWriter(PrintWriter out) throws SQLException
- Specified by:
setLogWriterin interfaceCommonDataSource- Specified by:
setLogWriterin interfaceDataSource- Throws:
SQLException
-
unwrap
public <T> T unwrap(Class<T> iface) throws SQLException
- Specified by:
unwrapin interfaceWrapper- Throws:
SQLException
-
load
public DataSourceImpl load(InputStream is)
-
load
public DataSourceImpl load(Reader r)
-
load
public DataSourceImpl load(File file)
-
load
public DataSourceImpl load(String file)
-
loadProps
public DataSourceImpl loadProps(Map<String,String> props)
-
getUrl
public String getUrl()
-
setUrl
public DataSourceImpl setUrl(String url)
-
getUserName
public String getUserName()
-
setUserName
public DataSourceImpl setUserName(String userName)
-
getPassword
public String getPassword()
-
setPassword
public DataSourceImpl setPassword(String password)
-
-