-->
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.  [ 1 post ] 
Author Message
 Post subject: Liaison table-séquence postgresql
PostPosted: Mon Jun 13, 2005 8:08 am 
Newbie

Joined: Mon Jun 13, 2005 6:09 am
Posts: 1
Location: Calais, France
Bonjour,

J'utilise Hibernate 3.0 avec une base Postgresql. Je souhaitais créer mes clés primaires grâce au type serial pour pouvoir insérer dans les tables sans avoir à gérer un identifiant unique, mais ce n'est pas géré directement, donc dans ma classe java, je place les tags Xdoclets suivants:

Code:
@hibernate.id generator-class="sequence" type="int" column="cty_id"...
@hibernate.generator-param name="sequence" value="country_cty_id_seq"

Je retrouve donc dans le fichier .hbm.xml correspondant:
Code:
<id       name="id"
            column="cty_id"
            type="int"
            length="4"
            unsaved-value="null">
            <generator class="sequence">
                <param name="sequence">country_cty_id_seq</param>
            </generator>

Et le fichier de création de table crée bien la table, la séquence mais pas de lien entre les deux comme si j'avais utilisé le type serial direct en postgres. Je dois alors faire un:
Code:
ALTER TABLE country ALTER COLUMN cty_id SET DEFAULT nextval('public.country_cty_id_seq'::text)

Pour lier la séquence et la table.

Exsite-il une alternative à créer à la main les ~ 40 lignes d'alter table pour couvrir ma base?
Ais-je loupé quelque chose? fort probable mais quoi...

David


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

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.