Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <c3p0-config>
  3. <default-config>
  4. <property name="jdbcUrl">jdbc:mysql://localhost:3306/dbname</property>
  5. <property name="driverClass">com.mysql.jdbc.Driver</property>
  6. <property name="user">username</property>
  7. <property name="password">password</property>
  8.  
  9.  
  10. <property name="checkoutTimeout">30000</property>
  11. <property name="idleConnectionTestPeriod">30</property>
  12. <property name="initialPoolSize">10</property>
  13. <property name="maxIdleTime">30</property>
  14. <property name="maxPoolSize">100</property>
  15. <property name="minPoolSize">10</property>
  16. <property name="maxStatements">200</property>
  17. </default-config>
  18. </c3p0-config>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement