Programming
HR
Maven Coordinates of the most popular JDBC Drivers
['View All Posts Lukaseder', 'I Made Jooq']
Java, SQL and jOOQ.
This blog post lists the most popular drivers from the jOOQ integration tests. The list only includes drivers from Maven Central. <!-- Db2 --> <dependency> <groupId>com.ibm.db2</groupId> <artifactId>jcc</artifactId> </dependency> <!-- Derby --> <dependency> <groupId>org.apache.derby</groupId> <artifactId>derby</artifactId> </dependency> <dependency> <groupId>org.apache.derby</groupId> <artifactId>derbyclient</artifactId> </dependency> <dependency> <groupId>org.apache.derby</groupId> <artifactId>derbytools</artifactId> </dependency> <!-- DuckDB --> <dependency> <groupId>org.xerial</groupId> <artifactId>sqlite-jdbc</artifactId> </dependency> <!-- Firebird --> <dependency> <groupId>org.firebirdsql.jdbc</groupId> <artifactId>jaybird</artifactId> </dependency> <!-- H2 --> <dependency>…