Top "Connection-pooling" questions

In software engineering, a connection pool is a cache of connections maintained so that the connections can be reused when future requests to the resource are required.

Connection pooling options with JDBC: DBCP vs C3P0

What is the best connection pooling library available for Java/JDBC? I'm considering the 2 main candidates (free / open-source): Apache DBCP …

java jdbc connection-pooling c3p0 apache-commons-dbcp
How to establish a connection pool in JDBC?

Can anybody provide examples or links on how to establish a JDBC connection pool? From searching google I see many …

java jdbc connection-pooling
Should I set max pool size in database connection string? What happens if I don't?

This is my database connection string. I did not set max pool size until now. public static string srConnectionString = "server=…

sql sql-server-2008 connection-string connection-pooling
Entity Framework and Connection Pooling

I've recently started to use the Entity Framework 4.0 in my .NET 4.0 application and am curious about a few things relating …

.net database entity-framework ado.net connection-pooling
Efficient SQL test query or validation query that will work across all (or most) databases

Many database connection pooling libraries provide the ability to test their SQL connections for idleness. For example, the JDBC pooling …

sql connection-pooling
Configure hibernate to connect to database via JNDI Datasource

Hi all I'm using Hibernate+Struts2+Tomcat6+Mysql as my J2EE framework. I've been using hibernate's built-in connection pooling …

java hibernate jndi connection-pooling
How do I manage MongoDB connections in a Node.js web application?

I'm using the node-mongodb-native driver with MongoDB to write a website. I have some questions about how to manage connections: …

node.js mongodb database-connection connection-pooling
Need Code to create Connection Pool in java

Need code to create the connection pool in java? How does we make sure that connection pool doesn't return the …

java connection connection-pooling
.net connection pooling

I don't get what is the syntax difference between regular connection and connection pool. When I'm using the using key …

c# .net ado.net connection-pooling