hi all,
we have a problem in production ;(,
on this project we're using oracle 8i, hibernate 2.1 and c3p0, the db is restarted every night but the webapp is still using "old" connection,we have this in hibernate.cfg.xml:
Code:
<property name="c3p0.max_size">200</property>
<property name="c3p0.min_size">5</property>
<property name="c3p0.idleConnectionTestPeriod">1800</property>
<property name="c3p0.maxIdleTime">3200</property>
is the line <property name="c3p0.idleConnectionTestPeriod">1800</property> ok?
i know that validate is deprecated,
should i use c3p0.idle_test_period ? i'm lost and can't find the real parameters.
Thanks a lot,