}
protected void myInitDbConnection(ServletContext globalContext, boolean createDefaultAccounts) {
// HERE WE CREATE GLOBAL CONNECTIONs AND/OR GLOBAL CONNECTION POOLS
try {
DbConnection sqlConnection = (DbConnection) globalContext
.getAttribute(SQL_CONNECTION);
DbConnection dbConnection = null;
if (sqlConnection == null && ServiceProvider.getDbConnection() == null) {
dbConnection = createConnection();
ServiceProvider.initialize(dbConnection, createDefaultAccounts);
globalContext.setAttribute(SQL_CONNECTION, dbConnection);
} else {