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.

Closing JDBC Connections in Pool

Our standard code section for using JDBC is... Connection conn = getConnection(...); Statement stmt = conn.conn.createStatement (ResultSet.TYPE_SCROLL_INSENSITIVE, …

java mysql jdbc connection-pooling
Spring JDBC connection pool best practices

I have a basic Spring JDBC application with a pretty basic configuration: <bean id="myDataSource" class="org.springframework.jdbc.…

java spring connection-pooling c3p0 apache-commons-dbcp
JDBC Connection pooling using C3P0

Following is my helper class to get DB connection: I've used the C3P0 connection pooling as described here. public …

java database database-connection connection-pooling c3p0
Connection pooling in PHP

Is it possible to cache database connections when using PHP like you would in a J2EE container? If so, …

php connection-pooling
What is database pooling?

I just wanted to know the concept of database connection pooling and how it is achieved.

java database database-connection connection-pooling
C3P0 apparent deadlock when the threads are all empty?

I'm using C3P0 as a connection pool in Tomcat, and I'm seeing very worrying errors: 2010-09-16 13:25:00,160 [Timer-0] WARN …

java connection-pooling c3p0
How do I implement a DAO manager using JDBC and connection pools?

My problem is as follows. I need a class that works as a single point to a database connection in …

java jdbc connection-pooling dao genericdao
DBCP - validationQuery for different Databases

I use DBCP pool and I want use testOnBorrow and testOnReturn to test if connection is still valid. Unfortunately I …

java connection-pooling apache-commons-dbcp
Best configuration of c3p0

I'm struggling with a problem facing c3p0 configuration. I posted a question last week

java hibernate jpa-2.0 connection-pooling c3p0