WARN: SQL(org.hibernate.engine.jdbc.spi.SqlExceptionHelper logExceptions) Error: 1064, SQLState: 42000

2.3k Views Asked by At

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();
  }
}
0

There are 0 best solutions below