success = statement.executeUpdate() == 1;
statement.close();
return success;
} catch (SQLException e) {
logger.error("Cannot delete label for session ID " + sessionID + " from database");
throw new DBException("Cannot delete label for session ID " + sessionID + " from database", e);
}
}