/ Published in: Java
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
boolean hecho = false; Usuario user = null; + "' and clave='" + clave + "'"; try { operacion = ayudar.beginTransaction(); List<Usuario> listaUsuarios = (List<Usuario>) ayudar.createQuery(sentencia).list(); if (!listaUsuarios.isEmpty()) { user = listaUsuarios.get(0); hecho = true; } else { } } return hecho; }