Java/Connection pooling

From Omnia
Jump to navigation Jump to search

Java Connection Pooling

enables ODBC applications to reuse a connection from a pool of connections, without having to perform the complete connection process

share environment (henv?)

"Implicitly setting the ADO ActiveConnection (Conn) to a connection string defeats efficiencies from connection pooling, one the new features introduced in ODBC driver manager 3.0. Connection pooling enables an ODBC application to reuse a connection from a pool of connections. Once a connection has been created and placed in the pool, an ODBC application can reuse the same driver and the connection within the same shared environment (henv) without performing the complete connection process." [1]

INFO: Frequently Asked Questions About ODBC Connection Pooling [2]

persistent connections? no - persistent is where one connection is persistently tied to a thread.