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!