connection pooling in asp.net
8 minutes ago|LINK
i searched and read many posts on google about CONNECTION POOLING, it says that it's an temporary memory to keep all then database connections and are used when requests are made to use it but i couldn't figure out its exact meaning like e.g. what in this case when i usually create , open and close my DB connections
e.g.
sqlconnection sqC = new sqlconnection("CONNECTION STRING THAT IS PLACED IN WEB.CONFIG")
.
.
.
.
.
sqc.Open();
//code
sqc.Close();
this i what i usually do and doing since years, so what in this case ? This is connection pooling ? or where it's involved in it ? what when i close my Sqc ? is it by default ?