1

Is there any good example of Informix connection pool using Java?

I'm looking for a high-performance connection pool for Informix.

Jonathan Leffler
  • 730,956
  • 141
  • 904
  • 1,278
Peter Penzov
  • 1,126
  • 134
  • 430
  • 808
  • There is a JDBC driver for informix you can use it like other jdbc. This can help you : http://stackoverflow.com/questions/2835090/how-to-establish-a-connection-pool-in-jdbc – Mr_Thorynque Jul 07 '16 at 13:38
  • I already have experience with third party solutions for connection pool. But my intention is to use JDBC driver com.ibm.informix because usually this driver is developer and tested for Informix. – Peter Penzov Jul 07 '16 at 13:41
  • You will use je JDBC IBM driver with a third party, the third party just manage the pool for you, they does not develop drivers for each databases. – Mr_Thorynque Jul 07 '16 at 13:52

1 Answers1

1

HikariCP is a high performance database connection pool that's compatible with a number of databasesource's, including informix.

0xadecimal
  • 696
  • 5
  • 18