Split HikariCP into two modules: core and agent.
parent
b5101d5e18
commit
add7af4915
@ -0,0 +1,169 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<!-- For release: mvn release:perform -Darguments=-Dgpg.passphrase=PASSPHRASE -->
|
||||
|
||||
<groupId>com.zaxxer</groupId>
|
||||
<artifactId>HikariCP-agent</artifactId>
|
||||
<version>1.1.7-SNAPSHOT</version>
|
||||
<packaging>bundle</packaging>
|
||||
|
||||
<name>HikariCP-agent</name>
|
||||
<description>Ultimate JDBC Connection Pool</description>
|
||||
<url>https://github.com/brettwooldridge/HikariCP</url>
|
||||
|
||||
<organization>
|
||||
<name>Zaxxer.com</name>
|
||||
<url>https://github.com/brettwooldridge</url>
|
||||
</organization>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:git@github.com:brettwooldridge/HikariCP.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:brettwooldridge/HikariCP.git</developerConnection>
|
||||
<url>git@github.com:brettwooldridge/HikariCP.git</url>
|
||||
</scm>
|
||||
|
||||
<licenses>
|
||||
<license>
|
||||
<name>The Apache Software License, Version 2.0</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
|
||||
<developers>
|
||||
<developer>
|
||||
<name>Brett Wooldridge</name>
|
||||
<email>brett.wooldridge@gmail.com</email>
|
||||
</developer>
|
||||
</developers>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
|
||||
<parent>
|
||||
<groupId>org.sonatype.oss</groupId>
|
||||
<artifactId>oss-parent</artifactId>
|
||||
<version>7</version>
|
||||
</parent>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.felix</groupId>
|
||||
<artifactId>maven-bundle-plugin</artifactId>
|
||||
<version>2.3.7</version>
|
||||
<type>maven-plugin</type>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.sun</groupId>
|
||||
<artifactId>tools</artifactId>
|
||||
<version>1.6.0</version>
|
||||
<scope>system</scope>
|
||||
<systemPath>${java.home}/../lib/tools.jar</systemPath>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.javassist</groupId>
|
||||
<artifactId>javassist</artifactId>
|
||||
<version>3.18.1-GA</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<sourceDirectory>src/main/java</sourceDirectory>
|
||||
<testSourceDirectory>src/test/java</testSourceDirectory>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.1</version>
|
||||
<configuration>
|
||||
<source>1.7</source>
|
||||
<target>1.7</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.felix</groupId>
|
||||
<artifactId>maven-bundle-plugin</artifactId>
|
||||
<version>2.3.7</version>
|
||||
<extensions>true</extensions>
|
||||
<configuration>
|
||||
<instructions>
|
||||
<Bundle-Name>HikariCP-agent</Bundle-Name>
|
||||
<Export-Package>com.zaxxer.hikari.javassist</Export-Package>
|
||||
<Import-Package>com.sun.tools.attach,javassist.*,javax.management,javax.sql,javax.sql.rowset,,javax.sql.rowset.serial,,javax.sql.rowset.spi,org.slf4j</Import-Package>
|
||||
<Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
|
||||
<Agent-Class>com.zaxxer.hikari.javassist.HikariInstrumentationAgent</Agent-Class>
|
||||
</instructions>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<version>2.2.1</version>
|
||||
<configuration>
|
||||
<!-- outputDirectory>/absolute/path/to/the/output/directory</outputDirectory>
|
||||
<finalName>filename-of-generated-jar-file</finalName -->
|
||||
<attach>true</attach>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-sources</id>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>2.9.1</version>
|
||||
<configuration>
|
||||
<show>public</show>
|
||||
<attach>true</attach>
|
||||
<maxmemory>1024m</maxmemory>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>release-sign-artifacts</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>performRelease</name>
|
||||
<value>true</value>
|
||||
</property>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<version>1.4</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>sign-artifacts</id>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>sign</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
@ -0,0 +1,223 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<!-- For release: mvn release:perform -Darguments=-Dgpg.passphrase=PASSPHRASE -->
|
||||
|
||||
<groupId>com.zaxxer</groupId>
|
||||
<artifactId>HikariCP</artifactId>
|
||||
<version>1.1.7-SNAPSHOT</version>
|
||||
<packaging>bundle</packaging>
|
||||
|
||||
<name>HikariCP-core</name>
|
||||
<description>Ultimate JDBC Connection Pool</description>
|
||||
<url>https://github.com/brettwooldridge/HikariCP</url>
|
||||
|
||||
<organization>
|
||||
<name>Zaxxer.com</name>
|
||||
<url>https://github.com/brettwooldridge</url>
|
||||
</organization>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:git@github.com:brettwooldridge/HikariCP.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:brettwooldridge/HikariCP.git</developerConnection>
|
||||
<url>git@github.com:brettwooldridge/HikariCP.git</url>
|
||||
</scm>
|
||||
|
||||
<licenses>
|
||||
<license>
|
||||
<name>The Apache Software License, Version 2.0</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
|
||||
<developers>
|
||||
<developer>
|
||||
<name>Brett Wooldridge</name>
|
||||
<email>brett.wooldridge@gmail.com</email>
|
||||
</developer>
|
||||
</developers>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
|
||||
<parent>
|
||||
<groupId>org.sonatype.oss</groupId>
|
||||
<artifactId>oss-parent</artifactId>
|
||||
<version>7</version>
|
||||
</parent>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.8.1</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.slf4j</groupId>
|
||||
<artifactId>slf4j-api</artifactId>
|
||||
<version>1.7.5</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.mockito</groupId>
|
||||
<artifactId>mockito-all</artifactId>
|
||||
<version>1.9.5</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.slf4j</groupId>
|
||||
<artifactId>slf4j-simple</artifactId>
|
||||
<version>1.7.5</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.jolbox</groupId>
|
||||
<artifactId>bonecp</artifactId>
|
||||
<version>0.8.0-rc3</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.googlecode</groupId>
|
||||
<artifactId>reflectasm</artifactId>
|
||||
<version>1.01</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.felix</groupId>
|
||||
<artifactId>maven-bundle-plugin</artifactId>
|
||||
<version>2.3.7</version>
|
||||
<type>maven-plugin</type>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.hsqldb</groupId>
|
||||
<artifactId>hsqldb</artifactId>
|
||||
<version>2.3.0</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.sun</groupId>
|
||||
<artifactId>tools</artifactId>
|
||||
<version>1.6.0</version>
|
||||
<scope>system</scope>
|
||||
<systemPath>${java.home}/../lib/tools.jar</systemPath>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.javassist</groupId>
|
||||
<artifactId>javassist</artifactId>
|
||||
<version>3.18.1-GA</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>net.snaq</groupId>
|
||||
<artifactId>dbpool</artifactId>
|
||||
<version>5.1</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>c3p0</groupId>
|
||||
<artifactId>c3p0</artifactId>
|
||||
<version>0.9.1.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<sourceDirectory>src/main/java</sourceDirectory>
|
||||
<testSourceDirectory>src/test/java</testSourceDirectory>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.1</version>
|
||||
<configuration>
|
||||
<source>1.7</source>
|
||||
<target>1.7</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.felix</groupId>
|
||||
<artifactId>maven-bundle-plugin</artifactId>
|
||||
<version>2.3.7</version>
|
||||
<extensions>true</extensions>
|
||||
<configuration>
|
||||
<instructions>
|
||||
<Bundle-Name>HikariCP</Bundle-Name>
|
||||
<Export-Package>com.zaxxer.hikari</Export-Package>
|
||||
<Import-Package>com.sun.tools.attach,javassist.*,javax.management,javax.sql,javax.sql.rowset,,javax.sql.rowset.serial,,javax.sql.rowset.spi,org.slf4j</Import-Package>
|
||||
<Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
|
||||
</instructions>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<version>2.2.1</version>
|
||||
<configuration>
|
||||
<!-- outputDirectory>/absolute/path/to/the/output/directory</outputDirectory>
|
||||
<finalName>filename-of-generated-jar-file</finalName -->
|
||||
<attach>true</attach>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-sources</id>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>2.9.1</version>
|
||||
<configuration>
|
||||
<show>public</show>
|
||||
<excludePackageNames>com.zaxxer.hikari.*</excludePackageNames>
|
||||
<attach>true</attach>
|
||||
<maxmemory>1024m</maxmemory>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>release-sign-artifacts</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>performRelease</name>
|
||||
<value>true</value>
|
||||
</property>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<version>1.4</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>sign-artifacts</id>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>sign</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
@ -0,0 +1,210 @@
|
||||
# This is a manually maintained codex of JDBC drivers and the
|
||||
# classes within that need to be instrumented.
|
||||
#
|
||||
|
||||
# ------ HSQLDB v2.3.1 ----------------------------------------------------------
|
||||
#
|
||||
org.hsqldb.jdbc.JDBCDataSource=hsqldb
|
||||
|
||||
hsqldb.baseConnection=org.hsqldb.jdbc.JDBCConnection
|
||||
|
||||
hsqldb.baseStatement=org.hsqldb.jdbc.JDBCStatement
|
||||
|
||||
hsqldb.basePreparedStatement=org.hsqldb.jdbc.JDBCPreparedStatement
|
||||
|
||||
hsqldb.subCallableStatement=org.hsqldb.jdbc.JDBCCallableStatement
|
||||
|
||||
hsqldb.baseResultSet=org.hsqldb.jdbc.JDBCResultSet
|
||||
hsqldb.subResultSet=org.hsqldb.jdbc.JDBCResultSet$JDBCResultSetBasic
|
||||
|
||||
|
||||
# ------ Derby v10.10.1.1 -------------------------------------------------------
|
||||
#
|
||||
org.apache.derby.jdbc.ClientDataSource40=derby
|
||||
|
||||
derby.baseConnection=org.apache.derby.client.am.Connection
|
||||
derby.subConnection=org.apache.derby.client.net.NetConnection40
|
||||
|
||||
derby.baseStatement=org.apache.derby.client.am.Statement
|
||||
|
||||
derby.subPreparedStatement=org.apache.derby.client.am.PreparedStatement
|
||||
derby.subPreparedStatement=org.apache.derby.client.am.PreparedStatement40
|
||||
#derby.subPreparedStatement=org.apache.derby.client.am.PreparedStatement42
|
||||
|
||||
derby.subCallableStatement=org.apache.derby.client.am.CallableStatement
|
||||
derby.subCallableStatement=org.apache.derby.client.am.CallableStatement40
|
||||
#derby.subCallableStatement=org.apache.derby.client.am.CallableStatement42
|
||||
|
||||
derby.baseResultSet=org.apache.derby.client.am.ResultSet
|
||||
derby.subResultSet=org.apache.derby.client.net.NetResultSet40
|
||||
#derby.subResultSet=org.apache.derby.client.net.NetResultSet42
|
||||
|
||||
# ------ Derby Embedded v10.10.1.1 ----------------------------------------------
|
||||
#
|
||||
|
||||
derby-em.baseConnection=org.apache.derby.impl.jdbc.EmbedConnection
|
||||
derby-em.baseConnection=org.apache.derby.iapi.jdbc.BrokeredConnection
|
||||
derby-em.subConnection=org.apache.derby.impl.jdbc.EmbedConnection40
|
||||
derby-em.subConnection=org.apache.derby.iapi.jdbc.BrokeredConnection40
|
||||
#derby-em.subConnection=org.apache.derby.iapi.jdbc.BrokeredConnection42
|
||||
|
||||
derby-em.baseStatement=org.apache.derby.impl.jdbc.EmbedStatement
|
||||
derby-em.baseStatement=org.apache.derby.iapi.jdbc.BrokeredStatement
|
||||
derby-em.baseStatement=org.apache.derby.client.am.Statement
|
||||
derby-em.subStatement=org.apache.derby.impl.jdbc.EmbedStatement40
|
||||
derby-em.subStatement=org.apache.derby.iapi.jdbc.BrokeredStatement40
|
||||
|
||||
derby-em.subPreparedStatement=org.apache.derby.impl.jdbc.EmbedPreparedStatement
|
||||
derby-em.subPreparedStatement=org.apache.derby.impl.jdbc.EmbedPreparedStatement20
|
||||
derby-em.subPreparedStatement=org.apache.derby.impl.jdbc.EmbedPreparedStatement30
|
||||
derby-em.subPreparedStatement=org.apache.derby.impl.jdbc.EmbedPreparedStatement40
|
||||
#derby-em.subPreparedStatement=org.apache.derby.impl.jdbc.EmbedPreparedStatement42
|
||||
derby-em.subPreparedStatement=org.apache.derby.iapi.jdbc.BrokeredPreparedStatement
|
||||
derby-em.subPreparedStatement=org.apache.derby.iapi.jdbc.BrokeredPreparedStatement40
|
||||
#derby-em.subPreparedStatement=org.apache.derby.iapi.jdbc.BrokeredPreparedStatement42
|
||||
derby-em.subPreparedStatement=org.apache.derby.client.am.PreparedStatement
|
||||
derby-em.subPreparedStatement=org.apache.derby.client.am.PreparedStatement40
|
||||
#derby-em.subPreparedStatement=org.apache.derby.client.am.PreparedStatement42
|
||||
|
||||
derby-em.subCallableStatement=org.apache.derby.impl.jdbc.EmbedCallableStatement
|
||||
derby-em.subCallableStatement=org.apache.derby.impl.jdbc.EmbedCallableStatement20
|
||||
derby-em.subCallableStatement=org.apache.derby.impl.jdbc.EmbedCallableStatement30
|
||||
derby-em.subCallableStatement=org.apache.derby.impl.jdbc.EmbedCallableStatement40
|
||||
#derby-em.subCallableStatement=org.apache.derby.impl.jdbc.EmbedCallableStatement42
|
||||
derby-em.subCallableStatement=org.apache.derby.iapi.jdbc.BrokeredCallableStatement
|
||||
derby-em.subCallableStatement=org.apache.derby.iapi.jdbc.BrokeredCallableStatement40
|
||||
#derby-em.subCallableStatement=org.apache.derby.iapi.jdbc.BrokeredCallableStatement42
|
||||
derby-em.subCallableStatement=org.apache.derby.client.am.CallableStatement
|
||||
derby-em.subCallableStatement=org.apache.derby.client.am.CallableStatement40
|
||||
#derby-em.subCallableStatement=org.apache.derby.client.am.CallableStatement42
|
||||
|
||||
|
||||
# ------ PostgreSQL v9.2-1003.jdbc4 ----------------------------------------------
|
||||
#
|
||||
org.postgresql.ds.PGSimpleDataSource=pgsql
|
||||
|
||||
pgsql.baseConnection=org.postgresql.jdbc2.AbstractJdbc2Connection
|
||||
pgsql.subConnection=org.postgresql.jdbc3.AbstractJdbc3Connection
|
||||
pgsql.subConnection=org.postgresql.jdbc3g.AbstractJdbc3gConnection
|
||||
pgsql.subConnection=org.postgresql.jdbc4.AbstractJdbc4Connection
|
||||
pgsql.subConnection=org.postgresql.jdbc4.Jdbc4Connection
|
||||
|
||||
pgsql.basePreparedStatement=org.postgresql.jdbc2.AbstractJdbc2Statement
|
||||
|
||||
pgsql.subPreparedStatement=org.postgresql.jdbc3.AbstractJdbc3Statement
|
||||
pgsql.subPreparedStatement=org.postgresql.jdbc3g.AbstractJdbc3gStatement
|
||||
pgsql.subPreparedStatement=org.postgresql.jdbc4.AbstractJdbc4Statement
|
||||
pgsql.subPreparedStatement=org.postgresql.jdbc4.Jdbc4Statement
|
||||
pgsql.subPreparedStatement=org.postgresql.jdbc4.Jdbc4PreparedStatement
|
||||
|
||||
pgsql.subCallableStatement=org.postgresql.jdbc4.Jdbc4CallableStatement
|
||||
|
||||
pgsql.baseResultSet=org.postgresql.jdbc2.AbstractJdbc2ResultSet
|
||||
pgsql.subResultSet=org.postgresql.jdbc3.AbstractJdbc3ResultSet
|
||||
pgsql.subResultSet=org.postgresql.jdbc3g.AbstractJdbc3gResultSet
|
||||
pgsql.subResultSet=org.postgresql.jdbc4.AbstractJdbc4ResultSet
|
||||
pgsql.subResultSet=org.postgresql.jdbc4.Jdbc4ResultSet
|
||||
|
||||
|
||||
# ------ MySQL Connector/J v5.1.26 ----------------------------------------------
|
||||
#
|
||||
com.mysql.jdbc.jdbc2.optional.MysqlDataSource=mysql
|
||||
|
||||
mysql.baseConnection=com.mysql.jdbc.ConnectionImpl
|
||||
mysql.baseConnection=com.mysql.jdbc.ReplicationConnection
|
||||
mysql.baseConnection=com.mysql.jdbc.LoadBalancedMySQLConnection
|
||||
mysql.subConnection=com.mysql.jdbc.JDBC4Connection
|
||||
mysql.subConnection=com.mysql.jdbc.JDBC4LoadBalancedMySQLConnection
|
||||
|
||||
mysql.baseStatement=com.mysql.jdbc.StatementImpl
|
||||
|
||||
mysql.subPreparedStatement=com.mysql.jdbc.PreparedStatement
|
||||
mysql.subPreparedStatement=com.mysql.jdbc.ServerPreparedStatement
|
||||
mysql.subPreparedStatement=com.mysql.jdbc.JDBC4ServerPreparedStatement
|
||||
|
||||
mysql.subCallableStatement=com.mysql.jdbc.CallableStatement
|
||||
mysql.subCallableStatement=com.mysql.jdbc.JDBC4CallableStatement
|
||||
|
||||
mysql.baseResultSet=com.mysql.jdbc.ResultSetImpl
|
||||
mysql.subResultSet=com.mysql.jdbc.JDBC4ResultSet
|
||||
mysql.subResultSet=com.mysql.jdbc.UpdatableResultSet
|
||||
mysql.subResultSet=com.mysql.jdbc.JDBC4UpdatableResultSet
|
||||
|
||||
# ------ MariaDB JDBC v1.1.5 --------------------------------------------------
|
||||
#
|
||||
org.mariadb.jdbc.MySQLDataSource=maria
|
||||
|
||||
maria.baseConnection=org.mariadb.jdbc.MySQLConnection
|
||||
|
||||
maria.baseStatement=org.mariadb.jdbc.MySQLStatement
|
||||
|
||||
maria.subPreparedStatement=org.mariadb.jdbc.MySQLPreparedStatement
|
||||
|
||||
maria.baseCallableStatement=org.mariadb.jdbc.MySQLCallableStatement
|
||||
|
||||
maria.baseResultSet=org.mariadb.jdbc.MySQLResultSet
|
||||
|
||||
|
||||
# ------ JTDS v1.3.1 ----------------------------------------------------------
|
||||
#
|
||||
net.sourceforge.jtds.jdbcx.JtdsDataSource=jtds
|
||||
|
||||
jtds.baseConnection=net.sourceforge.jtds.jdbc.JtdsConnection
|
||||
jtds.baseConnection=net.sourceforge.jtds.jdbcx.proxy.ConnectionProxy
|
||||
|
||||
jtds.baseStatement=net.sourceforge.jtds.jdbc.JtdsStatement
|
||||
jtds.baseStatement=net.sourceforge.jtds.jdbcx.proxy.StatementProxy
|
||||
|
||||
jtds.subPreparedStatement=net.sourceforge.jtds.jdbc.JtdsPreparedStatement
|
||||
jtds.subPreparedStatement=net.sourceforge.jtds.jdbcx.proxy.PreparedStatementProxy
|
||||
|
||||
jtds.subCallableStatement=net.sourceforge.jtds.jdbc.JtdsCallableStatement
|
||||
jtds.subCallableStatement=net.sourceforge.jtds.jdbcx.proxy.CallableStatementProxy
|
||||
|
||||
jtds.baseResultSet=net.sourceforge.jtds.jdbc.JtdsResultSet
|
||||
jtds.subResultSet=net.sourceforge.jtds.jdbc.CachedResultSet
|
||||
jtds.subResultSet=net.sourceforge.jtds.jdbc.MSCursorResultSet
|
||||
|
||||
|
||||
# ------ Oracle v12.1.0.1 -----------------------------------------------------
|
||||
#
|
||||
oracle.jdbc.pool.OracleDataSource=oracle
|
||||
|
||||
oracle.baseConnection=oracle.jdbc.driver.OracleConnection
|
||||
oracle.subConnection=oracle.jdbc.driver.PhysicalConnection
|
||||
oracle.subConnection=oracle.jdbc.driver.T4CConnection
|
||||
|
||||
oracle.baseStatement=oracle.jdbc.driver.OracleStatement
|
||||
|
||||
oracle.subPreparedStatement=oracle.jdbc.driver.OraclePreparedStatement
|
||||
|
||||
oracle.subCallableStatement=oracle.jdbc.driver.OracleCallableStatement
|
||||
|
||||
oracle.baseResultSet=oracle.jdbc.driver.OracleResultSet
|
||||
oracle.subResultSet=oracle.jdbc.driver.ArrayDataResultSet
|
||||
oracle.subResultSet=oracle.jdbc.driver.GeneratedScrollableResultSet
|
||||
oracle.subResultSet=oracle.jdbc.driver.InsensitiveScrollableResultSet
|
||||
oracle.subResultSet=oracle.jdbc.driver.ForwardOnlyResultSet
|
||||
oracle.subResultSet=oracle.jdbc.driver.ArrayLocatorResultSet
|
||||
oracle.subResultSet=oracle.jdbc.driver.SensitiveScrollableResultSet
|
||||
oracle.subResultSet=oracle.jdbc.driver.OracleReturnResultSet
|
||||
oracle.subResultSet=oracle.jdbc.driver.GeneratedUpdatableResultSet
|
||||
oracle.subResultSet=oracle.jdbc.driver.UpdatableResultSet
|
||||
|
||||
|
||||
# ------ HikariCP Testing v0.0.0 ----------------------------------------------
|
||||
#
|
||||
com.zaxxer.hikari.mocks.StubDataSource=hikari
|
||||
|
||||
hikari.baseConnection=com.zaxxer.hikari.mocks.StubBaseConnection
|
||||
hikari.subConnection=com.zaxxer.hikari.mocks.StubConnection
|
||||
hikari.baseStatement=com.zaxxer.hikari.mocks.StubStatement
|
||||
hikari.subPreparedStatement=com.zaxxer.hikari.mocks.StubPreparedStatement
|
||||
hikari.baseResultSet=com.zaxxer.hikari.mocks.StubResultSet
|
||||
|
||||
com.zaxxer.hikari.performance.StubDataSource=hikari-perf
|
||||
|
||||
hikari-perf.baseConnection=com.zaxxer.hikari.performance.StubConnection
|
||||
hikari-perf.baseStatement=com.zaxxer.hikari.performance.StubStatement
|
||||
hikari-perf.subPreparedStatement=com.zaxxer.hikari.performance.StubPreparedStatement
|
||||
hikari-perf.baseResultSet=com.zaxxer.hikari.performance.StubResultSet
|
Loading…
Reference in New Issue