protected DataSource getDataSource() throws ClassNotFoundException, SQLException
{
getLog().info("DB " + this.jdbcUrl + " with " + this.user + " via driver " + jdbcDriver);
Class.forName(jdbcDriver);
Connection connection = DriverManager.getConnection(this.jdbcUrl, this.user, this.password);
return new DataSourceWrapper(connection);
}