Tagged Questions

Many projects support interaction with a relational database. Creating a new connection for each user can be time consuming (often requiring multiple seconds of clock time), in order to perform a database transaction that might take milliseconds. Opening a connection per user can be unfeasible in a ...

learn more… | top users | synonyms

85
votes
13answers
45k 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 - ...
17
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 ...
11
votes
4answers
6k views

Is DBCP (Apache Commons Database Connection Pooling) still relevant?

The JDBC 3.0 spec talks about Connection (and Prepared Statement) pooling. We have several standalone Java programs (i.e. we are not using an application server) that have been using DBCP to provide ...
7
votes
1answer
2k views

tomcat-dbcp vs commons-dbcp

It seems there is a lot of confusion between these tow connection pooling libraries. What I want to know is which one is better (if at all). Here are some points which I would like to put up ...
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 ...
5
votes
2answers
559 views

Logging in DBCP

I'm using Apache Commons DBCP. There is a task to track the inner behavior of the DBCP - number of active and idle connections. I found out that DBCP lacks any such logging at all. Yes, tt is ...
5
votes
4answers
3k views

How good is Oracle Universal Connection Pool (UCP)

Does anybody have experience with using Oracle UCP under real production load? Does it handle database reconnects well? Are there any multi-threading issues? Has anybody compared it with C3P0 or ...
4
votes
1answer
1k views

DBCP and Hibernate on Spring, doesn't re-open dead connections, why?

I'm using Hibernate and DBCP to manage mySQL connections, all in a Spring project. Everything is working fine. The only problem is that if the app stays still for a long time, it will throw a an ...
4
votes
1answer
4k views

What is difference between autoReconnect & autoReconnectForPools in MySql connector/J?

In the configuration reference for MySql's connector J driver, a caveat emptor is issued on the use of the autoReconnect property. I followed the instructions and increased my server's *wait_timeout*. ...
3
votes
1answer
234 views

Difference between BasicDatasource and PoolingDatasource

What is the difference between org.apache.commons.dbcp BasicDatasource and PoolingDataSoure? Do both support pooling of connections? When to use each of them ?
3
votes
3answers
110 views

How do I properly destroy an Apache Commons DBCP Pool in Java?

I would like to use a PoolingDataSource as my connection pool (API at: http://commons.apache.org/dbcp/apidocs/org/apache/commons/dbcp/PoolingDataSource.html), but I don't know what to do with the pool ...
3
votes
1answer
95 views

how to return connection to pool

do we need to call any method on dbcp.BasicDataSource or jndi datasource(i'm using jboss) to return the connection after done with it? thanks in advance
3
votes
2answers
7k views

How to fix: “No suitable driver found for jdbc:mysql://localhost/dbname” error when using pools?

I am trying to create a connection to my database, when I put test my code using the main method, it works seamlessly. However, when trying to access it through Tomcat 7, it fails with error: No ...
3
votes
1answer
594 views

Tomcat webapp cannot use MySQL driver after redeploy

I am using commons-dbcp to do connection pooling for a MySQL database in a small Spring webapp which is deployed as a WAR file to a local Tomcat 6.0.28 container (installed using the Ubuntu package ...
3
votes
2answers
1k views

Tomcat Configuration using DBCP

We are getting a CommunicationsException (from DBCP) after iding for a while (a few hours). The error message (in the Exception) is at the end of this question - but I dont see wait_timeout defined in ...
3
votes
3answers
895 views

What is the best choice for database connection pooling library? (c3p0 problem)

I have heavy loaded java application using hirbernate. And I used to use as connection pool DBCP, but it had problems with connections lossing. Than I switched to c3p0. But now it sometimes bloks ...
3
votes
2answers
510 views

Pooling PreparedStatement on Tomcat with MySQL

When using Tomcat with MySQL, what is the relationship between poolPreparedStatements setting in Tomcat DataSource configuration (I believe coming from DBCP) and Connector/J cachePrepStmts setting? ...
2
votes
4answers
870 views

jdbc spring security, apache commons dbcp

In a Spring Security, I defined a jdbc auth manager: <security:authentication-manager> <security:authentication-provider> <security:jdbc-user-service ...
2
votes
2answers
677 views

How to view/monitor live database connections in a database pool?

We use database connection pooling for our java application. It is a web app run under tomcat. I want to view live connections in the pool as they are created and destroyed. Can somebody please ...
2
votes
2answers
333 views

Upgrading commons DBCP from 1.2 to 1.4, should I be afraid?

I was wondering if there were any big known issues out there. After upgrading the jar in my project, everything compiled. I didn't really see anything in the release notes that made me shudder, but I ...
2
votes
3answers
2k views

Auto Reconnect of Database Connection

I have a DBCP connection pool in Tomcat. The problem is that when the connection is lost briefly the appliction is broken because DBCP won't try to reconnect again later when there is a connection. ...
2
votes
3answers
1k views

Exceeding Maximum Idle Time in Java Web Application with Oracle DB

I have a Java web application connecting to an Oracle database running on another machine (not sure if this is relevant or not). I am using DBCP for connection pooling. The web application is ...
2
votes
3answers
861 views

unable to update CLOB using DBCP connection

Am trying to do update a clob column using a connection object that is retrieved using Apache DBCP connection pooling. Earlier, I've implemented connection pooling using this and it was working fine ...
2
votes
1answer
273 views

How commons dbcp (and other connection pools) manage open statements and resultsets?

Specifically, when I return a connection to the pool, does dbcp (and other connection pools) close the statements and resultsets for me? Or should I be closing these myself?
2
votes
1answer
1k views

Why use Tomcat's context.xml files to declare DBCP resources?

Im having trouble understanding why I would use a context.xml file to declare a resource, in my case a database connection pool. Hopefully I've got my facts straight in the following arguments against ...
2
votes
3answers
2k views

Prepared statement pooling in dbcp

Can someone explain how exactly prepared connection pooling using dbcp can be used? (with some example code if possible). I've figured out how to turn it on - passing a KeyedObjectPoolFactory to the ...
1
vote
2answers
89 views

Spring 2.5 Could not get JDBC Connection

I'm using spring 2.5 SimpleJdbcTemplate to access MySQL db. When I try to access the DB too often(using Quartz to access it every minute) i get this stack trace: ...
1
vote
0answers
113 views

How to use commons-DBCP with Play! Framework

How can I set up my Play! app to use a commons-dbcp connection pool instead of the native one provided by C3P0? UPDATE I got some feedback from the Play! Framework forum and what I was asking is ...
1
vote
1answer
147 views

Resolved - DBCP Pool using same connection?

I'm using JMetric to test my DBCP pool. Using one test with 20 threads I receive nullPointerException when I'm trying to createStatement from one Connection. My context have this conf: <Context ...
1
vote
1answer
1k views

Connection Pool Exception: Cannot get a connection, pool error Timeout waiting for idle object

I am running a web application in Production that recently crashed after it was under some stress. I would guess 100-300 people were accessing the site at similar times, which I would expect to work ...
1
vote
1answer
119 views

DBCP - does it support multi-threading?

I see in many places like: http://people.apache.org/~fhanik/jdbc-pool/jdbc-pool.html that dbcp is not multi-threaded and it is slow etc. However they did release a new version last year. Does anyone ...
1
vote
1answer
321 views

Tomcat: Replace DBCP by OracleConnectionPoolDataSource

since a few days, I try to replace Tomcats dbcp by Oracle's connection pool. That's required, because a web application uses some Oracle specific features. Currently, the JNDI datasoure is configured ...
1
vote
1answer
325 views

DBCP: removeAbandoned VS eviction

I fail to figure out the difference between removeAbandoned and eviction. I read somewhere that removeAbandoned was deprecated, but it is not mentionned nowhere in the official doc ...
1
vote
1answer
1k views

Apache Commons DBCP connection object problem, Thread: ClassCastException in org.apache.tomcat.dbcp.dbcp.PoolingDataSource$PoolGuardConnectionWrapper

I am using Apache Commons DBCP (commons-dbcp.jar) Connection pool. Once I obtained a connection from the pool it is wrapped in the class ...
1
vote
0answers
1k views

c3p0 or dbcp or BoneCP can handle broken connections

I'm reading about c3p0 and dbcp for handling jdbc connections and heard alot of problems and people saying dbcp is dead but c3p0 can't do jdbc4 and so on. But I don't know if these posts are out of ...
1
vote
2answers
805 views

Deadlock issue in DBCP deployed on Tomcat

I'm using DBCP data source (with default configuration) in Spring configuration to manage my connections to the database, and I'm running into a deadlock condition when the number of clients increase. ...
1
vote
0answers
219 views

How to set program name in ibatis config XML?

I am attempting to set the program name to something other than "jdbc thin client" using the iBatis dao config. From my dao XML config file: <transactionManager type="JDBC"> <dataSource ...
1
vote
1answer
289 views

How to specify schema for SQL Server in JDBC Spring configuration

We are using the org.apache.commons.dbcp.BasicDataSource as parent class for our datasources in Spring. Is it possible to specify which schema to use in either the "url" or in another property in the ...
1
vote
1answer
101 views

1.4 Commons-DBCP being brought in instead of 1.3

I have a strange situation. In jar A, I explicitly bring in version 1.3 of commons-dbcp. In jar B, I have a dependency on jar A. However, when I bring in the jar A dependency in jar B, my maven ...
1
vote
1answer
856 views

Question regarding org.apache.commons.dbcp.BasicDataSource

I fixed some bug related to the way we were using BasicDataSource and though I understand part of it I still have some questions unanswered :) Problem: The application was not able to auto-connect to ...
1
vote
1answer
229 views

How to evict or “kill” open connections when these are above a fixed limit (using dbcp w/ oracle)

Does anyone know how to evict or kill open connections (in use or not it doesn't matter) if the number of connections is above of a fixed limit (e.g. maxActive) Currently I'm using DBCP from Apache ...
1
vote
3answers
428 views

dbcp: number of open prepared statement

I get MaxOpenPreparedStatement exception in my program. I can monitor number of objects in GenericObjectPool with getNumActive()/getNumIdle() functions. How can I get connection & prepared ...
1
vote
2answers
1k views

Connection Pool hangs using Glassfish and Apache DBCP with Spring

We have a Spring application that uses Apache DBCP for connection pooling. Our app has been in production for almost a year with no problems. However, during the past few weeks, the application has ...
1
vote
2answers
836 views

How to add c3p0 or DBCP Connection pool?

Could you please explain to me how to add a standalone c3pO or DBCP connection pool to my toplink-based JPA project? I have a persistence.xml file, and everytime I want to query the database, I'm ...
1
vote
1answer
897 views

How to configure MySQL connection properties with Spring, Hibernate 3.3 and c3p0?

I am currently in the process of upgrading an application from Hibernate 3.2 to Hibernate 3.3. I though I'd stick with the default connection pool (Hibernate changed its default from Commons DBCP to ...
1
vote
1answer
186 views

dbcp having problems returning connections when database is unavailable

I found the following link by erickson dated jan 29, 2009: http://stackoverflow.com/questions/490288/is-dbcp-apache-commons-database-connection-pooling-still-relevant/490358#490358 "DBCP has serious ...
1
vote
0answers
451 views

Setting DB2 Client Audit information with a dbcp connection pool in a Java app

I'm developing Java apps on Tomcat 5.5 using JNDI to connect to shared dbcp connection pools with JDBC 3.0 drivers and DB2 8 on zOS and also DB2 9 on LUW. In my app, I use ...
1
vote
3answers
1k views

How to Create Data Source without Pooling in Tomcat

I use JNDI context to create datasource for JDBC drivers in Tomcat's context.xml file like this, <Resource name="db/test" type="javax.sql.DataSource" ...
1
vote
1answer
873 views

DBCP connection validation problem

I decided to use DBCP mainly because I was getting timeouts on my database connections. In theory, once you define a "validation query", DBCP will by default run that query on the connection before ...
0
votes
0answers
47 views

Hadoop: Why does my reduce function writes in multiple lines?

I have a reduce function that for some reason, writes in several lines and not just one. I used to have an array of doubles, that i transformed into a csv string and then write it on hdfs. Even if my ...

1 2