interface XPooledConnection in module com::sun::star::sdbc::

(Global Index)

Syntax

interface XPooledConnection : com::sun::star::uno::XInterface ;

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

Method Summary

getConnection return the connection which is pooled

Method Details



getConnection

Syntax

com::sun::star::sdbc::XConnection getConnection ();
raises ( com::sun::star::sdbc::SQLException );

Description

return the connection which is pooled

Returns

the pooled Connection object

Throws

SQLException if a database access error occurs.
Top of Page