-->
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.  [ 3 posts ] 
Author Message
 Post subject: Problem with loading objects (restart->db is overwritten)
PostPosted: Thu May 25, 2006 10:13 am 
Newbie

Joined: Sun May 14, 2006 2:22 pm
Posts: 7
Hibernate version: 1.3.1

Name and version of the database you are using: HSQLDB 1.8.0

My Problem:
I managed to persist my java objects and store them in the dbname.script file of my standalone hsqldb. Everything seems to work fine. I can make queries and load the objects from my db if I do it right after having stored them in my db (i.e. in the same method).
But if I restart my program and try to load the object from my database (without doing anything else before) it won't work because the database is being overwritten: Hibernate creates the empty tables due to my OR mapping.
How can I prevent hibernate from doing so?

Code:

This works fine:
Code:

                XYZ x = new XYZ();
      x.setName("Testname Abc");
      x.saveOrUpdate();
      XYZ y = XYZ.load();


But if I restart the Programm and try to load the object now, it won't work:
Code:
XYZ y = XYZ.load(); // Problem!



Code:


   public synchronized void saveOrUpdate() {
      
      Session session = Hibernate.openSession();
      Transaction transaction = null;
      try {
         transaction = session.beginTransaction();
         session.saveOrUpdate(this);
         transaction.commit();
      }
      catch(HibernateException he) {
         if(transaction != null) {
            transaction.rollback();
            throw he;
         }
      }
      finally {
         Hibernate.closeSession(session);
         Hibernate.closeSessionFactory();
      }

   }


public static synchronized XYZ load() {
      
      Session session = Hibernate.openSession();
      Transaction transaction = null;
      XYZ x = null;
      transaction = session.beginTransaction();
      Query query = session.createQuery("from XYZ");
      List result = query.list();   
      x = (XYZ) result.get(0);
      transaction.commit();

      Hibernate.closeSession(session);
      Hibernate.closeSessionFactory();
      
      return x;
      
   }


Help me please!


Top
 Profile  
 
 Post subject: my hibernate.cfg.xml
PostPosted: Fri May 26, 2006 4:13 am 
Newbie

Joined: Sun May 14, 2006 2:22 pm
Posts: 7
<hibernate-configuration>
<session-factory>

<property name="dialect">
org.hibernate.dialect.HSQLDialect
</property>

<property name="connection.driver_class">
org.hsqldb.jdbcDriver
</property>

<property name="connection.username">
sa
</property>

<property name="connection.password"></property>

<property name="connection.url">
jdbc:hsqldb:file:///Z:/prog/db/MyDB;shutdown=true
</property>

<!-- Enable Hibernate's automatic session context management -->
<property name="current_session_context_class">thread</property>

<!-- Disable the second-level cache -->
<property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>

<!-- Drop and re-create the database schema on startup -->
<property name="hbm2ddl.auto">create</property>

<mapping resource="de\test\XYZ.hbm.xml"/>

</session-factory>
</hibernate-configuration>


Top
 Profile  
 
 Post subject: problem fixed
PostPosted: Fri May 26, 2006 5:22 am 
Newbie

Joined: Sun May 14, 2006 2:22 pm
Posts: 7
<property name="hbm2ddl.auto">update</property>


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 3 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.