Uses of Interface
net.sf.jso.sql.ConnectionPool

Packages that use ConnectionPool
net.sf.jso.garbage   
net.sf.jso.schema   
net.sf.jso.sql   
net.sf.jso.storage   
net.sf.jso.transaction   
 

Uses of ConnectionPool in net.sf.jso.garbage
 

Constructors in net.sf.jso.garbage with parameters of type ConnectionPool
JSOGarbageCollector(ConnectionPool aPool, TransactionManager aTxMgr, StorageController aController)
          Constructs the collector.
 

Uses of ConnectionPool in net.sf.jso.schema
 

Constructors in net.sf.jso.schema with parameters of type ConnectionPool
JSOSchemaManager(StorageController aController, ConnectionPool aPool, DatabaseInterface aDb)
          Constructs the catalog manager.
 

Uses of ConnectionPool in net.sf.jso.sql
 

Classes in net.sf.jso.sql that implement ConnectionPool
 class DynamicPool
          Manages a dynamic pool of database connections that may grow or shrink according to demand.
 class NoPool
          Manages a pool of database connections.
 class SimplePool
          Manages a pool of database connections.
 

Methods in net.sf.jso.sql with parameters of type ConnectionPool
static void SQLUtil.safellyReturn(ConnectionPool pool, java.sql.Connection c)
          Returns a connection to a connection pool without throwing any exceptions.
static void SQLUtil.safellyClose(ConnectionPool pool)
          Closes a connection pool without throwing any exceptions.
 

Constructors in net.sf.jso.sql with parameters of type ConnectionPool
JDBCTransaction(ConnectionPool aPool)
          Constructs the transaction.
 

Uses of ConnectionPool in net.sf.jso.storage
 

Constructors in net.sf.jso.storage with parameters of type ConnectionPool
JSOObjectManager(StorageManager aManager, StorageController aController, SchemaProxy aSchema, DatabaseInterface aDatabase, ConnectionPool aPool, int cacheSize)
          Constructs the object manager.
 

Uses of ConnectionPool in net.sf.jso.transaction
 

Constructors in net.sf.jso.transaction with parameters of type ConnectionPool
JSOTransactionManager(ConnectionPool aPool, StorageController aController)