RE: ADODB Connection.Close doesn't drop DB connection for ~60 seconds



Hi Nick,

As far as I can see, this is caused by connection pooling. After you have
closed the connection, the connection will not be closed actually. It is
put back into the pool. It will only be disposed after its lifetime has
expired or the application is over. Pooling connections can significantly
enhance the performance and scalability of your application.

I think you can disable connection pooling by adding "OLE DB Services=-4;"
in the OleDb connection string. HTH.

Kevin Yu
=======
"This posting is provided "AS IS" with no warranties, and confers no
rights."

.



Relevant Pages