An open API service indexing awesome lists of open source software.

https://github.com/guilt/dbcm

Java Database Connection Manager.
https://github.com/guilt/dbcm

Last synced: over 1 year ago
JSON representation

Java Database Connection Manager.

Awesome Lists containing this project

README

          

About
-----
Java Database Connection Manager.

Usage
-----

Modern Java Usage:

```java
try(Connection con = ConnectionManagerHelper.getConnection()) {
//Blah.
}
```

Traditional Java Usage:

```java
try {
Connection con = ConnectionManagerHelper.getConnection();
//Blah.
} catch(SQLException sqle) {
//Handle Errors.
} finally {
ConnectionManagerHelper.closeConnection(con);
}
```

Installing
----------

```bash
mvn install -DperformRelease
```

Limitations
-----------

This software comes with no warranty, implicit or explicit. Use
this at your own risk. Suggestions/bug reports/fixes are always welcome.

Feedback
--------

* Author: Karthik Kumar Viswanathan
* Web : http://karthikkumar.org
* Email : karthikkumar@gmail.com