-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 7 posts ] 
Author Message
 Post subject: Is dropping table possible?
PostPosted: Mon Jan 01, 2007 10:49 am 
Newbie

Joined: Mon Jan 01, 2007 10:37 am
Posts: 3
Hello

I am changing my application to use hibernate and so far it looks great. Have only one problem, though. I went trough documentation and forums, but maybe I'm searching in a wrong way. I hope you can help me.

Is it possible to DROP TABLE with Hibernate?

(yes, it's needed, as I map the same class to many tables, and at some point of time some tables become not needed anymore)

Thanks in advance,
Marek


Top
 Profile  
 
 Post subject:
PostPosted: Mon Jan 01, 2007 11:43 am 
Newbie

Joined: Mon Dec 25, 2006 3:14 pm
Posts: 18
Sure, you can use sql query

SQLQuery query = session.createSQLQuery("drop table xyz");

http://www.hibernate.org/hib_docs/v3/ap ... ang.String)


Top
 Profile  
 
 Post subject:
PostPosted: Mon Jan 01, 2007 6:57 pm 
Newbie

Joined: Mon Jan 01, 2007 10:37 am
Posts: 3
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


Top
 Profile  
 
 Post subject:
PostPosted: Mon Jan 01, 2007 10:50 pm 
Newbie

Joined: Wed Aug 03, 2005 2:13 am
Posts: 16
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


Top
 Profile  
 
 Post subject:
PostPosted: Mon Jan 01, 2007 11:47 pm 
Senior
Senior

Joined: Sat Nov 27, 2004 4:13 am
Posts: 137
mmm, the downside is creating other tables (I believe dropping tables at runtime requires creating other tables then), and mapping your entity to other table (which requires changing SessionFactory's metadata).

_________________
don't forget to credit!

Amir Pashazadeh
Payeshgaran MT
پايشگران مديريت طرح
http://www.payeshgaran.co
http://www.payeshgaran.org
http://www.payeshgaran.net


Top
 Profile  
 
 Post subject:
PostPosted: Tue Jan 02, 2007 12:20 am 
Newbie

Joined: Mon Dec 25, 2006 3:14 pm
Posts: 18
> mmm, the downside is creating other tables (I believe dropping tables at runtime requires creating other tables then), and mapping
your entity to other table (which requires changing SessionFactory's metadata).

I don't think he is trying to drop the mapped tables, thats really bad idea.


Top
 Profile  
 
 Post subject:
PostPosted: Mon Apr 09, 2007 8:11 am 
Newbie

Joined: Fri Dec 29, 2006 2:28 pm
Posts: 11
Hi there!
I have to drop the table SPECTRA in my db. It is the mapping of my Spectra class in package popolamento. Here is my code:

Code:
Session session = HibernateUtil.getSessionFactory().getCurrentSession();
session.beginTransaction();
session.createQuery("delete popolamento.Spectra").executeUpdate();
session.getTransaction().commit();
HibernateUtil.getSessionFactory().close();


It works and is a db-independent method :-)

_________________
F/\B!O


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 7 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.