Tagged Questions
c3p0 is a Java library for JDBC drivers with JNDI-bindable DataSources, including DataSources that implement Connection and Statement Pooling, as described by the jdbc3 spec and jdbc2 std extension.
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 - ...
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 ...
9
votes
2answers
8k views
Hibernate, C3P0, Mysql — Broken Pipe
MySQL seems to have an 8 hour time out on its connections. I'm running multiple WARs in Tomcat utilizing Hibernate for ORM. After 8 hours (i.e. overnight), I get broken pipes when it picks up an ...
8
votes
6answers
16k views
What are the required C3P0 settings for hibernate in order to avoid Deadlocks
I use Hibernate together with MySQL 5.1.30.
I have the next libraries:
c3p0-0.0.1.2.jar
mysql-connector-java-5.0.3-bin.jar
hibernate3.jar
I use a hibernate.cfg.xml for configuration:
...
7
votes
2answers
2k views
should i activate c3p0 statement pooling?
we are running java6/hibernate/c3p0/postgresql stack.
Our JDBC Driver is 8.4-701.jdbc3
I have a few questions about Prepared Statements. I have read
excellent document about Prepared Statements
But ...
5
votes
1answer
62 views
C3p0 - APPARENT DEADLOCK on MSSQL, but not PostgreSQL or MySQL
We are getting exceptions like this
com.mchange.v2.async.ThreadPoolAsynchronousRunner$DeadlockDetector@5b7a7896 -- APPARENT DEADLOCK!!! Complete Status:
Managed Threads: 3
Active Threads: 3
Active ...
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
2answers
1k views
Is C3P0 thread-safe?
An interruption exception (java.lang.InterruptedException) occurs as I'm trying to perform some simple read (SELECT) operations using C3P0 on a MySQL database. The exception occurs as I increase the ...
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 ...
4
votes
2answers
808 views
Multiple applications having c3p0 configuration gives warning
Hi
I have two web application under one tomcat. Both are using hibernate 3.2.1 and c3p0 0.9.1.2. While the second application gets deployed, I always get the following warning message.
Tomcat: ...
4
votes
3answers
7k views
Java Hibernate/C3P0 error: “Could not obtain connection metadata. An attempt by a client to checkout a Connection has timed out.”
I'm trying to get some code I was passed up and running. It appears to use the Hibernate framework. I've gotten past most of the errors tweaking the configuration, but this one has me dead stumped.
...
4
votes
4answers
8k views
Jetty 7 + MySQL Config [java.lang.ClassNotFoundException: org.mortbay.jetty.webapp.WebAppContext]
I've been trying to get a c3p0 db connection pool configured for Jetty, but I keep getting a ClassNotFoundException:
2010-03-14 19:32:12.028:WARN::Failed startup of context ...
4
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
5k views
hibernate connection pool
I can't seem to get hibernate to use c3p0 for connection pooling, it says
12:30:35,038 INFO DriverManagerConnectionProvider:64 - Using Hibernate built-in connection pool (not for production use!)
...
4
votes
3answers
7k views
Reproduce com.mysql.jdbc.exceptions.jdbc4.CommunicationsException with a setup of Spring, hibernate and C3P0
I got this error from the production code:
com.mysql.jdbc.exceptions.jdbc4.CommunicationsException:
The last packet successfully received
from the server was36940 seconds
ago.The last packet ...
3
votes
1answer
71 views
is c3p0 obsolete?
According to http://sourceforge.net/projects/c3p0/files/bin/ it seems that the last stable version of c3p0 was released in 2007.
Isn't it abandoned project?
We use it heavily and it works fine, but ...
3
votes
1answer
1k views
Tomcat JDBC connection pool VS c3p0 Connection pool
I recently came across this connection pool implementation.
http://people.apache.org/~fhanik/jdbc-pool/jdbc-pool.html
I find it quite interesting.
Did anyone try this out? I think it looks great ...
3
votes
1answer
568 views
Getting errors when building C3p0 from source
I downloaded the source (v 0.9.1.2) and tried building it, first from
command line and then inside an IDE.
I think the problem is setting classpath in the build.properties file.
Here is my current ...
3
votes
3answers
784 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
1answer
2k views
How to monitor c3p0 connections
I am using Hibernate in my JBoss war, using c3p0 for connection pooling, both configured within a hibernate.cfg.xml config file in my classpath
<property ...
3
votes
2answers
2k views
C3p0 connection pooling for jpa in persistence.xml not working?
I'm still getting JDBC timeouts after trying to configure c3p0 following all of the examples I could find. I'm using JPA, Hibernate, Tomcat, MySQL [AWS RDS]. Here's the snippet from persistence.xml:
...
3
votes
3answers
880 views
How can I prevent Hibernate + c3p0 + MySql creating large numbers of sleeping connections?
I'm using GWT with Hibernate, c3p0 and MySQL to produce a web app with a limited audience (max 50 users per day). During testing I found that Hibernate was opening a connection with each session but ...
3
votes
4answers
3k views
how do I turn off logging in java c3p0 connection pooling lib?
hey all, I'm just getting started with c3p0 for database connection pooling. It's attaching itself to my log4j output currently. How do I set logging off or at least to SEVERE level only for c3p0? I ...
3
votes
1answer
435 views
c3p0 acronym origin - jdbc connection pool name
Can anyone share the origin and meaning of the jdbc connection pool named c3p0.
Was it inspired from star wars?.
3
votes
3answers
5k views
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 class DBConnection {
private static DataSource dataSource;
private static ...
3
votes
2answers
491 views
How do I decide the number of connections required in connection pooling?
I am using hibernate 3.2.2 in my application. For connection pooling, we are using c3p0 0.9.1.
I am using Generic DAO Pattern and Open Session in View pattern to do database operation.
We are ...
3
votes
1answer
858 views
Lock Ordering in C3p0
I am trying to log the creation and destruction of database connections in our application using c3p0's ConnectionCustomizer. In it, I have some code that looks like this:
...
2
votes
0answers
48 views
c3po helper threads to be deadlocking
I used c3po pooling with my gui application. I have the following configuration
overrides.put("maxStatementsPerConnection", 30);
overrides.put("maxPoolSize",70);
overrides.put("checkoutTimeout", ...
2
votes
2answers
130 views
Can I use one pooled datasource for multiple databases with Spring/Hibernate/c3p0?
Our application uses Spring/Hibernate for database access. We use multiple hibernate session factories (hibernate3.LocalSessionFactoryBean), because the data is in a number of separate databases. Each ...
2
votes
1answer
115 views
Database Connections Aren't Closing
I'm using spring 3.0 (jdbcTemplate), Tomcat, MySQL and C3p0 to handle my database activities. I'm using both jdbctemplate and simplejdbctemplate which will take care of creating and closing ...
2
votes
1answer
24 views
Min_Size for c3p0
I'm developing a web app (3-tier). I'm currently using Hibernate as ORM and C3P0 as connection pooling mechanism. Browsing through the properties of C3P0, it looks like:
Min_size: Minimum number of ...
2
votes
2answers
224 views
Questions regarding C3P0 Pooled Data Source
I tried to use Pooled Data source to log information regarding database connection pool i.e, Max pool size, current no. of connections in use, busy connection etc. I am using C3P0Registry to get ...
2
votes
2answers
285 views
Unable to locate c3p0 logging messages
Up until recently, we created a new database connection for every query. Each query is setup using connection.prepareStatement(query) and we were able to log these queries to our logger ...
2
votes
2answers
408 views
Can I disable c3p0 from logging to System.err?
According to the c3p0 documentation, you can manually specify where logs should go, whether through JDK 1.4 logging, Log4j, or through System.out. I'm running SLF4J, so I've included ...
2
votes
1answer
182 views
C3P0 won't start configured in Hibernate properties with Spring?
I'm using Hibernate 3.3.1GA and Spring 3.0.2 (and Maven from eclipse). I added c3p0-0.9.1 jar to classpath, and first tried this approach (configuring c3p0 within datasource bean):
<bean ...
2
votes
2answers
258 views
How do I close a java.sql.DataSource
We have a system where data is partitioned by date. So for example in SqlServer we have one database per month of data. Each month partition uses a Jdbc driver Datasource wrapped in a C3P0 ...
2
votes
1answer
393 views
Monitor c3p0 (with hibernate and Tomcat) with JConsole
The Web App is a Struts application (no spring) using c3p0 with Hibernate and it's in Tomcat 6. Both Hibernate and c3p0 jars are in the {WEB_APP}/WEB-INF/lib folder.
In Tomcat the jmx remote is ...
2
votes
2answers
463 views
Jetty 7 + MySQL Config [java.lang.IllegalArgumentException: Object is not of type class org.eclipse.jett y.webapp.WebAppContext]
I've been trying to get a c3p0 db connection pool configured for Jetty (7.4.1.v20110513), but I keep getting a java.lang.IllegalArgumentException :
C:\jetty7>java -jar start.jar
2011-05-29 ...
2
votes
2answers
556 views
How to set a getConnection() timeout for c3p0?
Yesterday AWS's RDS went down -- and so did our database.
When this happened, C3P0 would try to get a database connection and would hang. I would obviously like my application to return an error ...
2
votes
2answers
603 views
Eclipselink, c3p0 and Spring - creating too many connections!
I'm trying to use c3p0 to pool my connections to a MySQL DB with Eclipselink, but I've encountered a problem. On starting the Virgo server, the correct number of c3p0 initialPoolSize connections are ...
2
votes
0answers
1k views
Using c3p0 connection Pooling in a tomcat Spring based App
I have a Spring Based Web App running under tomcat 6. Now, I want to use c3p0 connection pooling instead of tomcat's default dbcp. So, from the c3p0 help doc, I have defined the data source in ...
2
votes
2answers
676 views
C3P0 + MySQL : Got an error reading communication packets
An error many have experienced is related with the message:
[Warning] Aborted connection 38 to db: 'database_name' user:
'root' host: 'localhost' (Got an error reading communication packets)
which ...
2
votes
2answers
2k views
Database connection timeout
I have read so many articles on the Internet about this problem but none seem to have a clear solution. Please could someone give me a definite answer as to why I am getting database timeouts. The app ...
2
votes
2answers
5k views
Spring configuration of C3P0 with Hibernate?
I have a Spring/JPA application with Hibernate as the JPA provider. I've configured a C3P0 data source in Spring via:
<bean id="myJdbcDataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"
...
2
votes
2answers
2k views
Hibernate/c3p0 connection leak
We're running a spring/hibernate/c3p0 application under load. When I reduce the c3p0 maxPoolSize to some far, far lower than the number of concurrent users, our application just hangs. There are no ...
2
votes
4answers
1k views
Do I need to use C3P0 pooling library in my (grails) web application?
I am not familiar at all with connection pooling library. I've just discovered it through this blog article) and I am not sure that I should use one in my web application based on ...
2
votes
2answers
361 views
c3p0 Connection Checkin
I'm trying to implement a solution with c3p0 for the first time. I understand how to initialize the connection pool and "checkout" a Connection from the pool as follows:
ComboPooledDataSource cpds = ...
2
votes
4answers
454 views
What is the benefit of Connection and Statement Pooling?
Can someone explain what is Connection and Statement Pooling and what is the benefit over unpooled DataSources? I am trying to understand when it is a good idea to use a technology like c3p0 or ...
1
vote
1answer
55 views
c3p0 how to shutdown all the database connections and re-open them when need?
I have a TimerTask which runs one time (about 1 or 2 hours) each day. And at each running, it will create hundreds of threads to do some compute work for each table in MySQL database. and I use the ...
1
vote
0answers
72 views
how to test c3p0 connection pooling?
I want to use connection pooling in standalone Java code.i want to test c3p0 connection pooling is work or not?please help me to configure the c3p0,which is work only two connection when the ...