Skip to content

guilt/dbcm

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 

About

Java Database Connection Manager.

Usage

Modern Java Usage:

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

Traditional Java Usage:

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

Installing

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

About

Java Database Connection Manager.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages