Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/swaldman/c3p0
a mature, highly concurrent JDBC Connection pooling library, with support for caching and reuse of PreparedStatements.
https://github.com/swaldman/c3p0
connection-management connection-pool connection-pooling java jdbc
Last synced: 12 days ago
JSON representation
a mature, highly concurrent JDBC Connection pooling library, with support for caching and reuse of PreparedStatements.
- Host: GitHub
- URL: https://github.com/swaldman/c3p0
- Owner: swaldman
- License: other
- Created: 2012-05-13T05:20:50.000Z (over 12 years ago)
- Default Branch: 0.10.x
- Last Pushed: 2024-09-26T03:11:00.000Z (about 2 months ago)
- Last Synced: 2024-10-18T14:15:11.444Z (23 days ago)
- Topics: connection-management, connection-pool, connection-pooling, java, jdbc
- Language: Java
- Homepage: http://www.mchange.com/projects/c3p0
- Size: 4.33 MB
- Stars: 1,287
- Watchers: 108
- Forks: 338
- Open Issues: 71
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
- License: LICENSE
Awesome Lists containing this project
README
# c3p0
c3p0 is a mature, highly concurrent JDBC Connection pooling library, with
support for caching and reuse of `PreparedStatement` objects.c3p0 is available as managed dependency on Maven Central,
[groupId: com.mchange, artifactId: c3p0]
For available versions, look [here](https://oss.sonatype.org/content/repositories/releases/com/mchange/c3p0/).Please see the [documentation](http://www.mchange.com/projects/c3p0/) for more.
From the current *development snapshot*, here is the latest [CHANGELOG](CHANGELOG).
Please address comments and questions to the [library author](mailto:[email protected]).
However, please keep in mind he is an abysmal correspondent and basically an asshole.
Despite that, your feedback is very much appreciated. Pull requests are gratefully accepted. You may also open issues.
Thank you for your interest in c3p0. I do hope that you find it useful!
### Building c3p0
For now (v0.10.1), c3p0 is built under a Java 11 VM, targetting JDK 7 classfiles for continued compatibility with legacy apps.
_In order to remind me to switch to Java 11, the build will fail with an Exception if it detects an unexpected version._
You can comment this requirement out of `build.sc` if you like. It's the line that looks like
```scala
require( sys.props("java.runtime.version").startsWith("11"), s"Bad build JVM: ${sys.props("java.runtime.version")} -- We currently expect to build under Java 11. (We generate Java $JvmCompatVersion compatible source files.)" )
```c3p0 relies on the excellent build tool [`mill`](https://mill-build.com/).
Install `mill`. Then, within this repository direcory, run
```plaintext
$ mill jar
```You'll find the raw as library `out/jar.dest/out.jar`.
If you maintain a local ivy repository, You can customize `publishVersion` in [`build.sc`](build.sc), then run
```plaintext
$ mill publishLocal
```To build the documentation
```plaintext
$ mill doc.docroot
```You can then open in your browser `out/doc/docroot.dest/index.html`
### Testing c3p0
By default the tests expect to find a database at `jdbc:postgresql://localhost:5432/c3p0`.
As you can see, I usually test against a local postgres database. You can change this in
the `forkArgs` function of [`build.sc`](build.sc).c3p0's testing is, um, embarrassingly informal. There is a junit test suite, but it covers a
very small fraction of c3p0 functionality. To run that, it's just```plaintext
$ mill test.test
```Mostly c3p0 is tested by running a few test applications, and varying config _ad hoc_ to see how things work.
_If you think c3p0 could/should be tested more professionally and automatically, me too! I'd love a pull request._
[`build.sc`](build.sc) contains a lot of test applications, but the most important are
```plaintext
$ mill test.c3p0Benchmark
```This is c3p0 most basic, common, test-of-first-resort.
It runs through and times a bunch of different c3p0 operations, and puts the library through pretty good exercise```plaintext
$ mill test.c3p0Load
```This one puts c3p0 under load of a 100 thread performing 1000 database operations each,
then terminates.```plaintext
$ mill test.c3p0PSLoad
```This one puts c3p0 under load of a 100 thread performing database operations indefinitely.
It uses `PreparedStatement` for its database operations, so is a good way of exercising the
statement cache.#### Test configuration
You can observe (most of) the config of your c3p0 `DataSource` when you test, because c3p0 logs it at `INFO`
upon the first `Connection` checkout attempt. When testing, verify that you are working with the configuration
you expect!Tests are configured by command-line arguments and by a `c3p0.properties` file.
To play with different configurations, edit [`test/resources-local/c3p0.properties`](test/resources-local/c3p0.properties).
Also check the `forkArgs()` method in [`build.sc`](build.sc)Sometimes you want to put the library through its paces with pathological configuration.
A baseline pathological configuration is defined in [`test/resources-local-rough/c3p0.properties`](test/resources-local-rough/c3p0.properties).To give this effect, temporarily edit [`build.sc`](build.sc):
```scala
override def runClasspath : T[Seq[PathRef]] = T{
super.runClasspath() ++ localResources()
// super.runClasspath() ++ localResourcesRough()
}
```* Comment out `super.runClasspath() ++ localResources()`
* Uncomment in `super.runClasspath() ++ localResourcesRough()`Then of course you can edit [`test/resources-local-rough/c3p0.properties`](test/resources-local-rough/c3p0.properties).
#### Test logging
Often you will want to focus logging on a class or feature you are testing. By default, c3p0 tests
are configured to use `java.util.logging.`, and be configured by the file [`test/conf-logging/logging.properties`](test/conf-logging/logging.properties).Of course you can change the config (in `c3p0.properties`) to use another logging library if you'd like,
but you may need to modify the build to bring third-party logging libraries in, and configure those libraries
in their own ways.### Building c3p0-loom
Because c3p0 currently builds under Java 11, but c3p0-loom requires Java 21, c3p0 loom is a
[separate project](https://github.com/swaldman/c3p0-loom).It is just a parallel mill project.
The instructions above apply (except `c3p0-loom` does not have independent documentation to build).### License
c3p0 is licensed under [LGPL v.2.1](LICENSE-LGPL) or [EPL v.1.0](LICENSE-EPL), at your option. You may also
opt to license c3p0 under any version of LGPL higher than v.2.1.---
**Note:** c3p0 has had a good experience with reporting of a security vulnerability via Sonatype's _Central Security Project_.
If you find a c3p0 security issue, do consider reporting it via https://hackerone.com/central-security-project