Tagged Questions
In software engineering, a connection pool is a cache of database connections maintained so that the connections can be reused when future requests to the database are required.
82
votes
13answers
42k views
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 - http://commons.apache.org/dbcp/
C3P0 - ...
35
votes
2answers
9k views
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 to pooling.
Connection pooling as I know is managed by the ADO.NET data ...
21
votes
4answers
9k views
Connection pooling in PHP
Is it possible to cache database connections when using PHP like you would in a J2EE container? If so, how?
16
votes
6answers
5k views
.NET best practices for MongoDB connections?
I've been playing with MongoDB recently (It's AMAZINGLY FAST) using the C# driver on GitHub. Everything is working just find in my little single threaded console app I'm testing with. I'm able to ...
14
votes
1answer
2k views
Java JDBC connection pool library choice in 2011?
Which JDBC connection pool library should I use for a new application project (not web application)?
Apache DBCP has enough unresolved issues which are pushed until 2.0 I think.
C3P0 development ...
14
votes
6answers
2k views
Connection Pool Strategy: Good, Bad or Ugly?
I'm in charge of developing and maintaining a group of Web Applications that are centered around similar data. The architecture I decided on at the time was that each application would have their own ...
11
votes
2answers
1k views
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.datasource.DriverManagerDataSource">
<property ...
11
votes
5answers
6k views
Mysql connection pooling question: is it worth it?
I recall hearing that the connection process in mysql was designed to be very fast compared to other RDBMSes, and that therefore using a library that provides connection pooling (SQLAlchemy) won't ...
10
votes
6answers
1k views
What really is connection pooling?
I have heard the term connection pooling and looked for some references by googling it... But can't get the idea when to use it....
When should i consider using
connection pooling?
What are the ...
9
votes
4answers
591 views
Tomcat Connection pool creating too many connections, stuck in sleep mode
I'm using Tomcat 6.0.29, with Tomcat 7's connection pool and MySQL. Testing my application, it doesn't reuse anything from the pool, but ends up creating a new pool, to eventually where I cannot use ...
9
votes
2answers
203 views
connection pool for proprietary connection api (non jdbc)
I am using an API to connect to some hardware terminals and networks. The API allows me to connect to the servers, disconnect and interrogate for data, pretty similar to what JDBC connection allows ...
9
votes
3answers
2k views
What happens to an uncommitted transaction when the connection is closed?
Are they rolled back immediately?
Are they rolled back after some period of time?
Are they left in an uncommitted state?
Is the behavior the same if connection pooling is used and the connections are ...
9
votes
7answers
4k views
How to force a SqlConnection to physically close, while using connection pooling?
I understand that if I instantiate a SqlConnection object, I am really grabbing a connection from a connection pool. When I call Open(), it will open the connection. If I call the Close() or ...
8
votes
2answers
115 views
Spring app losing connection to MySql after 8 hours. How to properly configure?
I've got a Spring app that I believe uses DBCP connection pooling to connect to a MySql database. I say believe because this isn't an area I'm very strong in and I'm not positive if everything is set ...
8
votes
2answers
352 views
How many connections are available in the ADO.NET connection pool
Is it possible (from an ASP.NET application) to check how many connections of the ADO.NET connection pool are currently in-use and how many are available (not currently in-use)?
8
votes
2answers
7k views
What does sp_reset_connection do?
sp_reset_connection seems to be called by SQL Server connection pooling, to ensure that connections reused from the pool have most of their settings reset. Does anyone know exactly what it does and ...
8
votes
6answers
2k views
How do you setup your connection pool?
What is the best way to setup your pool with respect to:-
When do you create connections?
When do you close connections, and would you close all of them?
Do you test connections are still good. ...
7
votes
5answers
927 views
How to use Java JDBC connection pool?
I want to use a JDBC connection pool. The most important factor is that it's easy-to-use and bug-free. What is suitable for me?
7
votes
2answers
3k views
SQL Server connection pool doesn't detect closed connections?
For years, I've experienced very weird problems on all my web applications that connect to a SQL server.
The problem is that if something happens to the database server (server restart or other ...
7
votes
4answers
1k views
How do you manage database connections in php?
So recently I've really started to use php actively, and I need some insights on different ways to use database connections.
At first I just used the simple mysql_connect():
<?php
...
7
votes
3answers
6k views
SELECT 1 from DUAL: MySQL
In looking over my Query log, I see an odd pattern that I don't have an explanation for.
After practically every query, I have "select 1 from DUAL".
I have no idea where this is coming from, and ...
7
votes
2answers
6k views
Is there any way to have the JBoss connection pool reconnect to Oracle when connections go bad?
We have our JBoss and Oracle on separate servers. The connections seem to be dropped and is causing issues with JBoss. How can I have the JBoss reconnect to Oracle if the connection is bad while we ...
6
votes
3answers
109 views
what is the optimal data structure for a pool container?
At the moment i use the STL vector container template to put back and get the connections.
1) on get, a connection is returned and "erase()"d from pool vector.
2) on release, the connection is ...
6
votes
3answers
427 views
How to remove invalid database connection from pool
I am using connection pooling of tomcat with oracle database. It is working fine, but when i use my application after a long time it is giving error that "connection reset". I am getting this error ...
6
votes
2answers
955 views
TransactionScope helper that exhausts connection pool without fail - help?
A while back I asked a question about TransactionScope escalating to MSDTC when I wasn't expecting it to. (Previous question)
What it boiled down to was, in SQL2005, in order to use a ...
6
votes
2answers
543 views
How do I track orphaned JDBC connections that are not closed?
We've found a bug in old code where connections aren't being closed. It's an easy fix, but I'm wondering how we go about proving that it's fixed. There is a choice of using a connection pool or not. ...
6
votes
4answers
1k views
Why so many sp_resetconnections for C# connection pooling?
We have a web service coded in C# that makes many calls to MS SQL Server 2005 database. The code uses Using blocks combined with C#'s connection pooling.
During a SQL trace, we saw many, many calls ...
6
votes
5answers
2k views
Performance comparison of JDBC connection pools
Does anyone have any information comparing performance characteristics of different ConnectionPool implementations?
Background: I have an application that runs db updates in background threads to a ...
6
votes
5answers
4k views
How to detect SqlServer connection leaks in a ASP.net applications?
I'm currently doing some GUI testing on a ASP.net 2.0 application.
The RDBMS is SQL Server 2005. The host is Win Server 2003 / IIS 6.0.
I do not have the source code of the application because it ...
5
votes
3answers
450 views
Java Database connection pool (BoneCP vs DBPool vs c3p0)
For a Java app outside of a J2EE container, which connection pool library is the best?
I heard c3p0 is getting outdated.
Jakarta's common pool library is no longer under development
Therefore I'm ...
5
votes
1answer
81 views
How do I prevent late replies to a TCP socket?
I'm writing a database library that will have to intelligently support timeouts. Now that I'm looking at connection pooling, I'm particularly worried about the following scenario:
Send Query #1
Time ...
5
votes
2answers
157 views
Website architecture design requiring real-time polling from external servers
I have a game running in N ec2 servers, each with its own players inside (lets assume it a self-contained game inside each server).
What is the best way to develop a frontend for this game allowing ...
5
votes
1answer
408 views
Using BoneCP: Handling connections from the pool
I have just started using BoneCP and this is my first time using a connection pool. I'm somewhat confused as to how I am supposed to use it. Currently I am saving the BoneCP-object as a static ...
5
votes
1answer
347 views
How to pool the connections of mongodb with casbah?
I'm using mongodb with scala driver casbah. If I'm not understanding wrong, it doesn't provide connection pool. Is there any pool libraries for casbah, like dbcp/c3p0 for jdbc connections?
5
votes
1answer
2k views
Java Connection Pooling best practices?
After getting fed up with c3p0's constant locking I'm turning to boneCP for an alternative Connection Pool for my Database. I have a server app that processes around 7,000 items per minute and needs ...
5
votes
2answers
649 views
JDBC Connection Pooling: Connection Reuse?
As per my understanding, JDBC Connection Pooling (at a basic level) works this way:
create connections during app initialization and put in a cache
provide these cached connections on demand to the ...
5
votes
2answers
214 views
MySQL best usage in Tomcat?
Which one is better way of using MySQL in Tomcat :
A) assign a DB connection for user as long as it's session is valid. [OR]
B) open connection to DB, on every request come to server and when ...
5
votes
3answers
504 views
SQL Exception: “Impersonate Session Security Context” cannot be called in this batch because a simultaneous batch has called it
When opening a connection to SQL Server 2005 from our web app, we occasionally see this error:
"Impersonate Session Security Context" cannot be called in this batch because a simultaneous batch has ...
5
votes
1answer
15k views
Hibernate c3p0 connection pool not timing out idle connections
We have a java server connecting to a MySQL 5 database usingHibernate as our persistence layer which is using c3p0 for DB connection pooling.
I've tried following the c3p0 and hibernate ...
5
votes
4answers
539 views
Managing SQL Server Connections
What is the the best practice for sql connections.
Currently i am using the following:
using(SqlConnection sqlConn = new SqlConnection(CONNECTIONSTRING))
{
sqlConn.Open();
//DB CODE GOES HERE
}
...
5
votes
5answers
1k views
Is there a way to share object between php pages?
I am new to php, but in other web technologies, you can share objects between page instances. For example, in java jsp pages you easily have on class that exist as static class for the whole server ...
5
votes
3answers
2k views
Is it possible to gets sql connection leaks using LINQ?
I belived it was not possible to get sql connection leaks when using LINQ, but perfmon tracing of NumberOfReclaimedConnections shows a high number and on high load we sometimes get exceptions like ...
5
votes
5answers
2k views
ADO.NET SQLServer: How to prevent closed connection from holding S-DB lock?
i Dispose an SqlConnection object, but of of course it isn't really closed. i need closed connection to not hold locks on database objects. How can i prevent closed connections from holding locks?
...
4
votes
1answer
118 views
Creating a connection (object) pool - any libraries to use?
We have a 3rd party piece of software that uses a bunch of internal middleware and services to connect to outside databases. Through this API I only have a bit of information on the connection object ...
4
votes
5answers
135 views
Closing a conneciton in the “unload” method
I have inherited a web framework whereby the previous developer has opened and closed his database connections in the init/unload methods of the page life cycle. Essentially constructor is like this ...
4
votes
1answer
2k views
java.lang.ClassNotFoundException: org.apache.tomcat.jdbc.pool DataSourceFactory
I'm investigating moving away from an Oracle connection pool and using the Tomcat connection pool. I followed the myriad of example for configuring the <Resource> in Tomcat's /conf/server.xml. I ...
4
votes
2answers
758 views
How to enable connection pooling over LDAP SSL?
Okay, so I'm moving my application over from non-SSL to SSL connections to my LDAP server. When running the application in non-SSL, connection pooling is working fine. However when I switch to SSL ...
4
votes
1answer
577 views
object pool vs connection pool
What is the exact difference between object pool and connection pool? Is there any difference to in their algorithm for utilizing memory.
msdn says "Object pooling lets you control the number of ...
4
votes
7answers
2k views
jdbc connection pooling
Can anybody provide examples or links on how to establish a JDBC connection pool?
From searching google I see many different ways of doing this and it is rather confusing.
Ultimately I need the code ...
4
votes
1answer
2k views
npgsql Leaking Postgres DB Connections: Way to monitor connections?
Background: I'm moving my application from npgsql v1 to npgsql v2.0.9. After a few minutes of running my application, I get a System.Exception: Timeout while getting a connection from the pool.
The ...