Sql connection

  • Thread starter Thread starter Victor Ciochina
  • Start date Start date
V

Victor Ciochina

Hello,

I have a problem with my application. I use c# to connect to an sql server.
I noticed that after the first connection, my server keeps at least one
connection always opened although I close all my connections in finnaly
block

Thanks
 
Hi Victor,

That's correct behavious as there is connection pooling involved.
Read
Connection Pooling for the .NET Framework Data Provider for SQL Server
..net help topic where this functionality is explained.
 
Back
Top