How to Clear ADODB Connection pool
We have a VB.net application using both ADO.net and ADODB connections(both connecting to MS SQl server)
Whenever an ADO.net connection throws an expection, we cleared the pools
Now if any ADO.connection reopened and everything works fine
Is there any way to clear pools for ADODB connection?
Re: How to Clear ADODB Connection pool
Rather than clearing out the pool, perhaps you should be looking into what's causing the error and fixing that. Plus... why using the mix of ADO.NET and ADODB? Wouldn't it make sense to use one (ADO.NET) or the other?
-tg