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-pre4</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.html.
The following packages are defined in the c3p0-0.9.2-pre4.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-pre4</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> </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.2</version> </dependency> </dependencies> </project>