Getting org.hibernate.engine.jdbc.spi.SqlExceptionHelper logExceptions
when I am trying to delete a record in hibernate using session.delete(cust)
Please provide some help. Thanks!
I have tried to check the field mapping for id column.
And before calling delete method, id is bound with the cust
object.
Configuration configuration = new Configuration().configure();
SessionFactory factory = configuration.buildSessionFactory();
Session session = factory.openSession();
long id = 2;
try {
Transaction t = session.beginTransaction();
Customer cust = (Customer) session.get(Customer.class, id);
session.delete(cust);
t.commit();
} catch (HibernateException e) {
System.out.println(e.getLocalizedMessage());
session.getTransaction().rollback();
}
}