Answer Posted / madhunathanv
Apart From def of Connection Pooling
Connection pooling has 4 parameters:
1.)Connect Timeout - controls the wait period in seconds
when a new connection is requested, if this timeout
expires, an exception will be thrown. Default is 15
seconds.
2.)Max Pool Size - specifies the maximum size of your
connection pool. Default is 100. Most Web sites do not use
more than 40 connections under the heaviest load but it
depends on how long your database operations take to
complete.
3.)Min Pool Size - initial number of connections that will
be added to the pool upon its creation. Default is zero;
however, you may chose to set this to a small number such
as 5 if your application needs consistent response times
even after it was idle for hours. In this case the first
user requests won't have to wait for those database
connections to establish.
4.)Pooling - controls if your connection pooling on or off.
Default as you may've guessed is true. Read on to see when
you may use Pooling=false setting.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the use of ADO.NET and XML web services?
What is dao and ado?
What are the parameters that control most of connection pooling behaviours?
how can implement dropdownlist in particular of dataset when try to update?
What is the difference between connected and disconnected environment?
How would you connect to database using .NET?
What are the ado.net connection pooling parameters?
What are the namespaces used in ADO.Net to connect to a database?
What is executequery?
What is a column variable?
Which method is used to sort the data in ADO.Net?
Explain what is datagrid with an example?
Which one of the objects is a high-level abstraction of the connection and command objects in ado.net?
What is shadow copy?
Which property is used to check whether a DataReader is closed or opened?