tags:

views:

42

answers:

3

can some body please explain me connection pooling plzzzz?

i am just not getting it from internet

+2  A: 

please read this:

http://msdn.microsoft.com/en-us/library/8xx3tyca.aspx

anishmarokey
i am not getting from there please explain me
NoviceToDotNet
what you are not getting? Explained well in the MSDN
anishmarokey
+1  A: 

http://www.15seconds.com/issue/970531.htm

this could be also very helpful..- (:

Schnoesel15
+1  A: 

It is layer that handles connections. Instead of opening and handling connection from your application, This way you say

gimme_connection 

and you get the connection becuase it was allready opened or if needed it is reopened. This is usefull for databases where there are lot of "processes" who need connections on same address.

ralu