Just a simple project to standardize the way my Java projects handle database connections.
The connection object supports just passing a Profile.Section from ini4j, or you can set the connection parameters manually.
Database conn = new Database();
conn.conn_info.Host = "localhost";
conn.conn_info.User = "root";
conn.conn_info.Password = "password";
conn.conn_info.Name = "Test";
Ini config = new Ini(new File("config.ini"));
Database conn = new Database(config.get("Database_Info");