| 
 | |||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
Interface to be implemented by classes that can provide a connection to a relational database. Extends the javax.sql.DataSource interface to allow classes using it to query whether or not the connection should be closed after a given operation. This can sometimes be useful for efficiency, if we know that we want to reuse a connection.
| Method Summary | |
|  boolean | shouldClose(java.sql.Connection conn)Should we close this connection, obtained from this factory? | 
| Methods inherited from interface javax.sql.DataSource | 
| getConnection, getConnection, getLoginTimeout, getLogWriter, setLoginTimeout, setLogWriter | 
| Method Detail | 
public boolean shouldClose(java.sql.Connection conn)
 if (factory.shouldClose(conn)) 
 	con.close()
 
 in a finally block.
 However, the JdbcTemplate class in this package should
 take care of closing JDBC connections, freeing
 application code of this responsibility.
conn - connection, which should have been obtained
 from this data source, to check closure status of| 
 | |||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||