*
* @param config the configuration to use
* @throws ServiceException for any error
*/
public DataLoader(Configuration config) throws ServiceException {
DBTool tool = new DBTool(config);
tool.drop();
tool.create();
_service = new DatabaseService(config);
_service.start();
_adapter = _service.getAdapter();
_connection = _service.getConnection();