org.apache.lucene.store.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. |
DataSourceUtils.java | Class | A set of Jdbc DataSource utilities. |
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. |
TransactionAwareDataSourceProxy.java | Class | Proxy for a target DataSource, adding awareness of local managed transactions.
Similar to a transactional JNDI DataSource as provided by a J2EE server.
Encapsulates both a simple transaction manager based on ThreadLocal
and a DataSource that supports it. |