What is the best way to delete all rows in a table in Hibernate?
If I iterate over a collection and call session.delete() it\'s not perform
session.delete()
String stringQuery = "DELETE FROM tablename"; Query query = session.createQuery(stringQuery); query.executeUpdate();