Home
|
Tutorial
|
Articles
|
Forum
|
Interview Question
|
Code Snippets
|
News
|
Fun Zone
|
Poll
|
Web Links
|
Certification
|
Search
Welcome :
Guest
Sign In
Register
Win Surprise Gifts!!!
Congratulations!!!
Top 5 Contributors of the Month
satyapriyanayak
Narayanan
Thamilselvan J
Anna Harris
Eone James
Home
>>
Interview Question
>>
Networking
>>
Post New Question
Subscribe to Interview Questions
What is Connection Pooling ?
Posted By :
Srikanth
Posted Date :
April 21, 2011
Points :
40
Category :
Networking
Connection Pooling will make a single connection instance, which allows that instance to connect to all the databases. Advantage is that it does not open and close the connection object multiple times.
You can also find related Interview Question to
What is Connection Pooling ?
below:
Does ADO.NET supports automatic connection pooling?
Yes.
There is a pooling property with connection string. By default it is set to true.
Use this property to specify that a particular connection should not participate in the pool, but instead should be destroyed when it is closed.
(More...)
What is Connection Pooling
Connection pooling is of
÷ A Connection Pool is a container of open and reusable connections. A Connection Pool is released from the memory when the last connection to the database is closed.
÷ The Data Providers in ADO.NET have Connection Pooling turned on by default; if you need to turn it off, specify Pooling = false in the connection string being used.
÷ Connection Pooling gives you an idle, open, reusable connection instead of opening a new one every time a connection request to the database is made. When the connection is closed or disposed, it is returned to the pool and remains idle until a request for a new connection comes in.
÷ The pool can house connections up to the maximum limit as specified in the connection string that was used to connect to the database.
(More...)
Parameters used in Connection pooling
Connection Pooling is controlled and the parameters passed to a connection string comprises the following:
÷ Connect Timeout
÷ Min Pool Size
÷ Max Pool Size
÷ Pooling
(More...)
Adv and Disadv of using Connection Pooling
Advantage of using Connection Pooling is an improvement of performance and scalability
Disadvantage is that one or more database connections, even if they are currently not used, are kept open
(More...)
What is Connection Pooling
Connection pooling is of
÷ A Connection Pool is a container of open and reusable connections. A Connection Pool is released from the memory when the last connection to the database is closed.
÷ The Data Providers in ADO.NET have Connection Pooling turned on by default; if you need to turn it off, specify Pooling = false in the connection string being used.
÷ Connection Pooling gives you an idle, open, reusable connection instead of opening a new one every time a connection request to the database is made. When the connection is closed or disposed, it is returned to the pool and remains idle until a request for a new connection comes in.
÷ The pool can house connections up to the maximum limit as specified in the connection string that was used to connect to the database.
(More...)
What are the Parameters used in Connection pooling
nnection Pooling is controlled and the parameters passed to a connection string comprises the following:
÷ Connect Timeout
÷ Min Pool Size
÷ Max Pool Size
÷ Pooling
(More...)
What are Advantages and Disadvantages of using Connection Pooling
Advantage of using Connection Pooling is an improvement of performance and scalability
Disadvantage is that one or more database connections, even if they are currently not used, are kept open
(More...)
What is a pre-requisite for connection pooling?
Multiple processes must agree that they will share the same connection, where every parameter is the same, including the security settings.
(More...)
What is a pre-requisite for connection pooling?
Multiple processes must agree that they will share the same connection, where every parameter is the same, including the security settings.
(More...)
Where do you store connection string?
Database connection string can be stored in the web config file.
The connection string can be stored in the WEB.Config file under
element.
(More...)
Quick Links For Interview Questions Categories:
ASP.Net
Windows Application
.NET Framework
C#
VB.Net
ADO.Net
Sql Server
SharePoint
Silverlight
OOPs
JQuery
JavaScript/VBScript
Biztalk
Patten/Practices
.IIS
WCF
WPF
WWF
Networking
Aptitude
Others
All
Find questions, FAQ's and their answers related to .NET, C#, Vb.Net, Sql Server and many more.
Now you can find lots of .NET, C#, Vb.Net, SQL Server,Windows, ASP.Net related Questions and their Answers here at www.dotnetspark.com. Our aim is to help you pass your certification Exams (MCP, MCSD, MCAD etc.,) with flying scores and get good name in your company.
So, Start looking our
Interview Question
section daily and improve your .NET Skills. You can also help others by posting Interview Questions and their Answers in this section.
Hall of Fame
Twitter
Terms of Service
Privacy Policy
Contact Us
Archives
Tell A Friend