On Apr 23, 10:41 pm, "joeNOS...@BEA.com" <joe.weinst...@gmail.com>
wrote:
> The process of making a new connection is slow. It requires opening
> a new socket from the client to the DBMS, which may require the DBMS
[quoted text clipped - 5 lines]
>
> Joe Weinstein at BEA Systems
So the cost saving is in the setup of a database connection, which
includes opening a communication path between the two components
(possibly using sockets), and authentication (although I guess that
whatever is trying to acquire the database connection would still have
to be authenticated)?
EricF - 24 Apr 2008 05:19 GMT
>On Apr 23, 10:41 pm, "joeNOS...@BEA.com" <joe.weinst...@gmail.com>
>wrote:
[quoted text clipped - 14 lines]
>whatever is trying to acquire the database connection would still have
>to be authenticated)?
That's pretty much it. Creating the connection involves all that, and is an
expensive operation. The connection pool manager acquires the connection and
is authenticated, not the consumer of the connection. That authentication is
only done once.
Eric