ResultSet dbDatas = null;
// Test if the file exist
final File savedProfile = new File(filePath);
if (savedProfile.exists() == true) {
try {
physicalStorage = new HsqldbStorage(dataDir, name, log);
physicalStorage.open();
} catch (InstantiationException e) {
log.warning(e.getLocalizedMessage());
e.printStackTrace();
} catch (IllegalAccessException e) {