-->
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: Objekt in die DB speichern und wieder laden?
PostPosted: Fri Mar 21, 2008 11:31 am 
Newbie

Joined: Fri Mar 21, 2008 11:21 am
Posts: 3
Location: Germany
Hallo,

wie lade ich Daten aus der Datenbank wieder in dasselbe Objekt, von dem aus ich die Daten gespeichert habe?

Momentan sieht die Stelle bei mir folgendermaßen aus:
Code:
tx = session.beginTransaction();
session.save(formular);
tx.commit();

session.refresh(formular);                       

return formular;


Wenn ich das Objekt (ohne ID) abspeichere, wird eine ID generiert. Das Objekt, das zurückgegeben werden soll, soll die ID enthalten. Mit refresh geht das anscheinend nicht - habe da wohl was falsch verstanden.

Vielen Dank im Voraus!


Top
 Profile  
 
 Post subject: Problem gelöst.
PostPosted: Fri Mar 21, 2008 2:01 pm 
Newbie

Joined: Fri Mar 21, 2008 11:21 am
Posts: 3
Location: Germany
Zwar nicht direkt so wie ich es haben wollte aber:

Code:
tx = session.beginTransaction();
Integer id = (Integer) session.save(formular);                     
tx.commit();

return id;


Die id kann dann ins vorhandene Objekt eingefügt werden. Weiss nicht, ob das die eleganteste Lösung ist. Aber das tut zumindest das, was ich möchte.


Top
 Profile  
 
 Post subject:
PostPosted: Mon Mar 31, 2008 12:31 pm 
Expert
Expert

Joined: Thu Jul 05, 2007 9:38 am
Posts: 287
die id sollte auch in der id property von formular stehen.

_________________
Please rate useful posts.


Schauderhaft: Softwaredevelopment, Projectmanagement, Qualitymanagement and all things "schauderhaft"


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.