:: com :: sun :: star :: sdbc ::

interface XPooledConnection
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-XPooledConnection
Description
defines a pooled connection which can share a unused connection.

PoolConnections are handled by the connection pool.

When the method XPooledConnection::getConnection() is called, the PooledConnection returns the connection which is pooled.

See also
XConnection
Developers Guide
12.2.3 Database Access - Data Sources in <span class="T5">OpenOffice.org</span> API - Connections - Connection Pooling

Methods' Summary
getConnection return the connection which is pooled
Methods' Details
getConnection
::com::sun::star::connection::XConnection
getConnection()
 

raises(

 
SQLException );

Description
return the connection which is pooled
Returns
the pooled Connection object
Throws
SQLException if a database access error occurs.
Top of Page