*
* @return <code>Connection</code> if the connection suceeded
* @param autoCommit
* @throws IOException */
protected Connection getConnection(boolean autoCommit) throws IOException {
ConnectionUtil util = this.getConnectionUtil();
//get returned connection into cached connection conn
conn = util.getConnection(autoCommit);
return conn;
}