HikariCP icon indicating copy to clipboard operation
HikariCP copied to clipboard

光 HikariCP・A solid, high-performance, JDBC connection pool at last.

Results 241 HikariCP issues
Sort by recently updated
recently updated
newest added

select data throws error ? nothing get connection , ![image](https://user-images.githubusercontent.com/45254883/141881601-347f6299-769e-462b-a5cc-3e758d4ad6c8.png) ![image](https://user-images.githubusercontent.com/45254883/141881631-0356d3f4-02b8-44e4-a3eb-7ead608842c4.png) but my local database has connnection ! ![image](https://user-images.githubusercontent.com/45254883/141881716-88350975-a1a5-4f69-948c-dd82a20f6ebb.png)

abstract class PoolBase { ...... long connectionTimeout; long validationTimeout; ...... } private final class HouseKeeper implements Runnable { @Override public void run() { ...... // refresh values in case they...

@brettwooldridge, Background: I am facing a very strange issue. I have a SpringBoot report generator app running as a Docker container and it connects to AWS Redshift to fetch the...

Hello, I created a small application for the purpose of data migration from oracle to postgresql and I decide to use the HikariCP for connection pooling. In order to avoid...

#### Environment ``` HikariCP version: 2.7.9 JDK version : 1.8.0_172 Database : AWS PostgreSQL RDS Driver version : x.x.x ``` ⚠️ Please verify that your issue still occurs on the...

Hi! Using jdbc:postgresql with sslcert=/path/to/certificate and sslkey=/path/to/key I can't connect to a postgressql server that require certificate.

DriverDataSource class contains this line: String sanitizedUrl = jdbcUrl.replaceAll("([?&;]password=)[^&#;]*(.*)", "$1$2"); Recently I stumbled upon issue with passwords containing for example semicolon. When driver is not found I see in the...

jdk version: 1.8 mariadb version: 10.6.1 springboot version: 2.2.1 This exception will occur after the program runs for a period of time here is my error message: `org.springframework.jdbc.UncategorizedSQLException: Error querying...

### Enviroment: ``` HikariCP version: 3.4.5 JDK version : 1.8 Database : Db2 on IBM iSeries/AS400 Driver: net.sf.jt400 jt400 10.6 ``` ### Problem This is my code to connect: ```Java...