-->
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: Champs calculé, valeur non initialisée par Hibernate
PostPosted: Mon May 30, 2005 8:08 am 
Beginner
Beginner

Joined: Wed Mar 30, 2005 5:41 am
Posts: 40
Salut,

J'ai un objet Person avec une propriété "age". J'aimerais qu'Hibernate calcule l'âge, j'ai ajouté
Code:
       <property name="age" lazy="false">
             <formula><![CDATA[
            ( SELECT (YEAR(CURRENT_DATE)-YEAR(p.birthDate))-(RIGHT(CURRENT_DATE,5)<RIGHT(p.birthDate,5)) FROM t_person p WHERE p.partyId = partyId)]]>
         </formula>
      </property>


dans le fichier de mapping et ça marche.

Le problème c'est que lorsque je saisis une personne (application J2EE), lorsque je submit et que la fiche de la personne s'affiche, l'âge est null.

Je suppose que lorsque j'ai fais "saveOrUpdate", Hibernate a placé l'objet en session et qu'ensuite, lorsque je fais le "get", Hibernate récupère l'objet dans la session mais n'exécute pas la requète qui devrait calculer l'age.

Comment régler ce problème ?

Merci d'avance
Lilian


Top
 Profile  
 
 Post subject:
PostPosted: Tue May 31, 2005 3:07 am 
Hibernate Team
Hibernate Team

Joined: Thu Dec 18, 2003 9:55 am
Posts: 1977
Location: France
session.refresh(myObj)

_________________
Anthony,
Get value thanks to your skills: http://www.redhat.com/certification


Top
 Profile  
 
 Post subject:
PostPosted: Tue May 31, 2005 4:38 am 
Beginner
Beginner

Joined: Wed Mar 30, 2005 5:41 am
Posts: 40
anthony wrote:
session.refresh(myObj)


c'est parfait, merci beaucoup

Lilian


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.