Hi,
I don't believe there is.
Hibernate is not generally geared to performing DDL type operations at runtime. The Hibernate Tools Schema Export can do a drop (of the entire schema!) but I guess this isn't what you're after.
Just use the SQL query, I don't think DROP syntax varies much between databases, the only real downside is that you are hard-coding the table name and can't use the Hibernate entity name.
deQuire wrote:
ajay516 wrote:
Sure, you can use sql query
SQLQuery query = session.createSQLQuery("drop table xyz");
http://www.hibernate.org/hib_docs/v3/ap ... ang.String)
Hey
Thank, of course manual query works. But is there any db-independent method, which will always work?
Marek