Tema: Ayuda JPA
Ver Mensaje Individual
  #4 (permalink)  
Antiguo 21/04/2009, 04:03
AlbertoJ2EE
 
Fecha de Ingreso: abril-2009
Mensajes: 4
Antigüedad: 15 años, 8 meses
Puntos: 0
Respuesta: Ayuda JPA

EntityManager em = emf.createEntityManager();
Libro l = new Libro();
EntityTransaction tx = em.getTransaction();
tx.begin();
try {
Query consulta = em.createQuery("DELETE FROM l WHERE l.isbn:=isbn");
consulta.setParameter("isbn", isbnParam);
int results = consulta.executeUpdate();
em.flush();
tx.commit();
} catch (PersistenceException pe) {
tx.rollback();
throw pe;
} finally {
em.close();
}


asi me quedo el metodo al final ,¿ves algun error?.