开发者

hibernate and delete all

开发者 https://www.devze.com 2023-01-12 05:26 出处:网络
What is the best way to delete all rows in a table in Hibernate? If I iterate ov开发者_如何学Cer a collection and call session.delete() it\'s not performing to my knowledge.

What is the best way to delete all rows in a table in Hibernate?

If I iterate ov开发者_如何学Cer a collection and call session.delete() it's not performing to my knowledge.

If I use another option session.createQuery("delete ...") it doesn't affect persistence context.

When I should use these methods if there is no better variant?


You can use HQL for truncate table

public int hqlTruncate(String myTable){
    String hql = String.format("delete from %s",myTable);
    Query query = session.createQuery(hql)
    return query.executeUpdate();
}


  • if you don't have anything to cascade, use the HQL delete DELETE FROM enityName
  • if you have cascades, iterate the collection and delete each one individually.

The problem lies in the fact that hibernate handles cascades internally, rather than leaving this to the database. So sending a query won't trigger the internal cascades, hence you will have inconsistencies / orphans.

If performance is so crucial (after all it's not everyday that one truncates a table), then you can have more than 1 HQL delete for each cascade - i.e. handling the cascades manually.


String stringQuery = "DELETE FROM tablename";
Query query = session.createQuery(stringQuery);
query.executeUpdate();
0

精彩评论

暂无评论...
验证码 换一张
取 消