Using hibernate/hql to truncate a table?
- by user149100
What is the recommended way to truncate a table using hibernate/hql?
I've tried this:
Query query = session.createQuery("truncate table MyTable");
query.executeUpdate();
But it didn't work (truncate doesn't seem do be documented anywhere in hql...)