Java tutorial
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package cl.model.dao; import cl.model.pojos.ParticipantesProyectos; import java.util.List; import org.hibernate.Query; import org.hibernate.Session; import org.hibernate.SessionFactory; import org.hibernate.Transaction; /** * * @author camilo */ public class ParticipantesDAO { public void ingresarParticipante(ParticipantesProyectos participante) { SessionFactory sf = null; Session session = null; Transaction tx = null; try { sf = HibernateUtil.getSessionFactory(); session = sf.openSession(); tx = session.beginTransaction(); session.save(participante); tx.commit(); session.close(); } catch (Exception ex) { tx.rollback(); throw new RuntimeException("No se pudo registrar el participante en el proyecto"); } } public void modificarParticipante(ParticipantesProyectos participante) { SessionFactory sf = null; Session session = null; Transaction tx = null; try { sf = HibernateUtil.getSessionFactory(); session = sf.openSession(); tx = session.beginTransaction(); session.save(participante); tx.commit(); session.close(); } catch (Exception ex) { tx.rollback(); throw new RuntimeException("No se pudo modificar el participante"); } } public int consultarParticipante(int codigo) { SessionFactory sf = HibernateUtil.getSessionFactory(); Session session = sf.openSession(); ParticipantesProyectos participante = (ParticipantesProyectos) session.get(ParticipantesProyectos.class, codigo); if (participante != null) { return 1; } else { return 0; } } public List<ParticipantesProyectos> findAll() { SessionFactory sf = HibernateUtil.getSessionFactory(); Session session = sf.openSession(); Query query = session.createQuery("from ParticipantesProyectos"); List<ParticipantesProyectos> lista = query.list(); session.close(); return lista; } public void eliminar(int codigo) { SessionFactory sf = null; Session session = null; Transaction tx = null; try { sf = HibernateUtil.getSessionFactory(); session = sf.openSession(); tx = session.beginTransaction(); session.delete(codigo); tx.commit(); session.close(); } catch (Exception ex) { tx.rollback(); throw new RuntimeException("No se pudo eliminar el participante"); } } }