| org.geotools.data.jdbc.ConnectionManager
All known Subclasses: org.geotools.data.jdbc.DataSourceManager,
ConnectionManager | public interface ConnectionManager (Code) | | This is an interface, it has the same method signature as the origional ConnectionPool.
It can be used in the constructor of JDBCDataStore (instead of ConnectionPool), allowing
us to create either ConnectionPool (the origional) or DataSourceAccess (the replacement
that wraps up a normal java.sql.DataSource.
author: Jody Garnett |
Method Summary | |
void | close() Clean up everything we can; all outstanding Connections would be rendered
unfunctional. | Connection | getConnection() Borrow a connection, please close after use so we can recycle it. | boolean | isClosed() Check if this ConnectionAccess is already closed. |
close | void close()(Code) | | Clean up everything we can; all outstanding Connections would be rendered
unfunctional.
|
isClosed | boolean isClosed()(Code) | | Check if this ConnectionAccess is already closed.
|
|
|