c3p0.
a JDBC Connection pooling / Statement caching library.
Here is the list of declaration for c3p0. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.mchange</groupId> <artifactId>c3p0</artifactId> <version>0.9.2.1</version> </dependency>
If you think this Maven repository POM file listing for c3p0 is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:GNU Lesser General Public License, Version 2.1
URL: http://www.gnu.org/licenses/lgpl-2.1.htmlName:Eclipse Public License, Version 1.0
URL: http://www.eclipse.org/org/documents/epl-v10.php.
The following table lists the most popular artifacts which are depending on c3p0-0.9.2.1. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Spring | spring-jdbc 4.0.6.RELEASE Spring JDBC | 38 |
JPA Hibernate | hibernate-c3p0 4.3.0.Final Integration for c3p0 Connection pooling into Hibernate O/RM | 12 |
Spring | spring-jdbc 4.0.7.RELEASE Spring JDBC | 30 |
The following packages are defined in the c3p0-0.9.2.1.jar
com.mchange com.mchange.v2 com.mchange.v2.c3p0 com.mchange.v2.c3p0.cfg com.mchange.v2.c3p0.codegen com.mchange.v2.c3p0.filter com.mchange.v2.c3p0.impl com.mchange.v2.c3p0.jboss com.mchange.v2.c3p0.management com.mchange.v2.c3p0.mbean com.mchange.v2.c3p0.stmt com.mchange.v2.c3p0.subst com.mchange.v2.c3p0.test com.mchange.v2.c3p0.util com.mchange.v2.resourcepool
Here is the content of the POM file.
<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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.mchange</groupId> <artifactId>c3p0</artifactId> <packaging>jar</packaging> <version>0.9.2.1</version> <name>c3p0</name> <description>a JDBC Connection pooling / Statement caching library</description> <url>https://github.com/swaldman/c3p0</url> <licenses> <license> <name>GNU Lesser General Public License, Version 2.1</name> <url>http://www.gnu.org/licenses/lgpl-2.1.html</url> <distribution>repo</distribution> </license> <license> <name>Eclipse Public License, Version 1.0</name> <url>http://www.eclipse.org/org/documents/epl-v10.php</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>scm:git:git@github.com:swaldman/c3p0.git</url> <connection>scm:git:git@github.com:swaldman/c3p0.git</connection> </scm> <dependencies> <dependency> <groupId>com.mchange</groupId> <artifactId>mchange-commons-java</artifactId> <version>0.2.3.4</version> </dependency> </dependencies> </project>