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.  [ 1 post ] 
Author Message
 Post subject: Possiblities to create tables
PostPosted: Wed Aug 08, 2007 10:45 am 
Newbie

Joined: Sun May 06, 2007 5:57 am
Posts: 10
I'd like to know if there is a possiblity to create only one table at runtime if it doesn't already exist; independent from the used DB. Actually I'm using a MySQL DB and I know, it's possible to create a table per JDBC:
Code:
      Session session = sessionFactory.getCurrentSession();
      session.beginTransaction();
      String sql = "create table if not exists TEST (ID INT)";
      try {
         session.connection().createStatement().execute(sql);
      }
      catch (HibernateException e) {}
      catch (SQLException e) {}
      session.getTransaction().commit();


But it's JDBC and special to MySQL and I prefer to use Hibernate


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

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.