Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Hibernate v4.1.4.final.jar using Java 1.7 to connect to Oracle 10g server. And this is a standalone java program.

Unfortunately, my query takes more than 30 minutes to run. I want to know where I can configure connection time out & read time out so that while running this standalone program, it will not time out and throw error?

Thanks!

share|improve this question
How do you get the DataSource/Connection for Hibernate? – DJ. Jul 24 '12 at 23:28
through hibernate.cfg.xml – Mike Jul 25 '12 at 0:17

2 Answers

up vote 0 down vote accepted

There are a few options that you can try:

  1. If the jdbc driver that you use support timeout function and can be configured through property, then you can pass on the property using: hibernate.connection.<propertyname>
  2. Use external connection provider such as c3p0 or DBCP, and control the timeout as those external provider support.
  3. Configure your hibernate to use DataSource instead of plain Connection and control timeout through that.

The closest property that I can find for Oracle driver is oracle.jdbc.ReadTimeout property. So in your hibernate configuration, the whole name will be hibernate.connection.oracle.jdbc.ReadTimeout..hope this works for you.

share|improve this answer
DJ, I'm using Oracle JDBC driver called ojdbc14.jar for Oracle 10g. Do you have a code snippet to use timeout from this Jar? – Mike Jul 25 '12 at 6:01
Mike, I added further information in my answer. – DJ. Jul 26 '12 at 3:30

In hibernate.cfg.xml you can configure property name c3p0.timeout. Just add line below and setup timeout as you want. You must use org.hibernate.connection.C3P0ConnectionProvider to use c3p0 configuration.

 <property name="c3p0.timeout">1000</property>
share|improve this answer
Is this time in seconds? Also, I'm assuming I don't have to include anything related to c3p0...I'm not sure what c3p0 is exactly....Also, if the above line is not present, how much is the default read timeout? – Mike Jul 25 '12 at 0:15
It's in seconds and you also must use org.hibernate.connection.C3P0ConnectionProvider if you want to use c3o0 configuration. – michal.kreuzman Jul 25 '12 at 0:36
It looks like a separate db or what exactly is c3p0?? After adding this jar in classpath, I'm getting error: Initial SessionFactory creation failed.java.lang.NoClassDefFoundError: com/mchan ge/v2/c3p0/DataSources Exception in thread "main" java.lang.ExceptionInInitializerError – Mike Jul 25 '12 at 0:43
It's a connection provider that uses a C3P0 connection pool. It's one of the connection pooling option look here. For nice example of configuration look here. Anyway add to question your hibernate.cfg.xml that we can see what kind of connection pool you are using. – michal.kreuzman Jul 25 '12 at 1:06
I don't have any connection pooling. Its a standalone main program which connects to database. Since this is a batch program which will run every day, I'm only specifying url, connection, user & password parametrs in hibernate.cfg.xml. Can you help me now? – Mike Jul 25 '12 at 1:59
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.