List<Clasificacion> results2 = (List<Clasificacion>) q2.execute(input);
if (!results2.isEmpty()) {
for (Clasificacion e : results2) {
try {
Clasificacion clas = pm.getObjectById(Clasificacion.class, e.getKey());
clas.setDetalle(input2);
} finally {
pm.close();
}
return "La clasificaci�n <b>" + input + "</b> se ha modificado por <b>" + input2 + "</b> correctamente.";
}