updatePreparedStatement.executeUpdate();
connection.commit();
logger.info("set startUpTime in the database");
} catch (Exception e) {
logger.warn("Problem to update the startUpTime in the database");
throw new DatabaseException("Problem to update the startUpTime in the database");
} finally {
if (updatePreparedStatement != null) {
try {
updatePreparedStatement.close();
} catch (SQLException sqle1) {