org.compass.gps.device.jdbc.datasource |
|
Java Source File Name | Type | Comment |
AbstractDataSource.java | Class | Abstract base class for Spring's DataSource implementations, taking care of
the "uninteresting" glue. |
ConnectionProxy.java | Interface | Subinterface of Connection to be implemented by connection proxies. |
DriverManagerDataSource.java | Class | Simple implementation of the standard JDBC DataSource interface, configuring
a plain old JDBC Driver via bean properties, and returning a new Connection
for every getConnection call. |
SingleConnectionDataSource.java | Class | Implementation of SmartDataSource that wraps a single Connection which is not
closed after use. |