|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.ddlutils.util.JdbcSupport
JdbcSupport is an abstract base class for objects which need to perform JDBC operations. It contains a number of useful methods for implementation inheritence..
Constructor Summary | |
JdbcSupport()
|
Method Summary | |
Connection |
borrowConnection()
Returns a (new) JDBC connection from the data source. |
void |
closeStatement(Statement statement)
Closes the given statement (which also closes all result sets for this statement) and the connection it belongs to. |
DataSource |
getDataSource()
Returns the data source used for communicating with the database. |
String |
getPassword()
Returns the password used to access the database. |
String |
getUsername()
Returns the username used to access the database. |
void |
returnConnection(Connection connection)
Closes the given JDBC connection (returns it back to the pool if the datasource is poolable). |
void |
setDataSource(DataSource dataSource)
Sets the DataSource used for communicating with the database. |
void |
setPassword(String password)
Sets the password to be used to access the database. |
void |
setUsername(String username)
Sets the username to be used to access the database. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public JdbcSupport()
Method Detail |
public DataSource getDataSource()
public void setDataSource(DataSource dataSource)
dataSource
- The data sourcepublic String getUsername()
public void setUsername(String username)
username
- The usernamepublic String getPassword()
public void setPassword(String password)
password
- The passwordpublic Connection borrowConnection() throws DatabaseOperationException
DatabaseOperationException
public void returnConnection(Connection connection)
connection
- The connectionpublic void closeStatement(Statement statement)
statement
- The statement
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |