-->
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.  [ 2 posts ] 
Author Message
 Post subject: Deux objets pour une seule table
PostPosted: Tue Jul 01, 2008 9:08 am 
Newbie

Joined: Thu Jun 26, 2008 5:22 am
Posts: 4
Voilà mon problème

J'ai une table "ab_group_or_list", avec entre autres un attribut GROUP_TYPE

J'ai par ailleurs deux objets AbGroup et AbList et j'aimerais mapper la table "ab_group_or_list" vers AbGroup si GROUP_TYPE=1 ou vers AbList si GROUP_TYPE=2

Est-ce seulement possible ? Si oui coment ?

J'ai essayé d'utiliser des requetes SQL nommées mais ça n'a pas l'air de marcher

Code:
@Entity
@SqlResultSetMapping(name="implicitGroup", entities=@EntityResult(entityClass=pim.AbGroup.class))
@NamedNativeQuery(name="AbGroup",
      query="select GROUP_ID, IN_TRASH, NAME from ab_group_or_list where GROUP_TYPE=1",
      resultSetMapping="implicitGroup")
@Table(name="ab_group_or_list")
public class AbGroup implements java.io.Serializable {
...
}


Top
 Profile  
 
 Post subject:
PostPosted: Wed Jul 09, 2008 1:11 pm 
Beginner
Beginner

Joined: Fri May 14, 2004 9:50 am
Posts: 28
Bonjour,

Tu peux utiliser l'héritage. Ta table sert à stocker toutes les données avec un code discriminant qui est GROUP_TYPE.
Puis tu crée un entité ab de laquelle tes deux classe vont hériter.


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