-->
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: Modelling a composite unique key containg a foreign key
PostPosted: Tue Jun 08, 2004 12:35 pm 
Newbie

Joined: Tue Jun 08, 2004 12:15 pm
Posts: 2
I am struggling to find the markup required to generate the below schema, in particular the unique key on the Description table.

It is a composite key made up of a foreign key and a version number.

I accept that perhaps I should dump the IDENTITY primary key on Description; this still leaves me unsure about how to define a composite key containing a foreign key element however.

Any advice much appreciated.

create table Instrument (
id NUMERIC(19,0) IDENTITY NOT NULL,
primary key (id)
)

create table Description (
id NUMERIC(19,0) IDENTITY NOT NULL,
version NUMERIC(19,0) not null,
instId NUMERIC(19,0) not null,
value VARCHAR(255) null,
primary key (id),
unique (instId, version),
constraint Desc_Inst foreign key (instId) references Instrument
)


Top
 Profile  
 
 Post subject:
PostPosted: Tue Jun 08, 2004 10:06 pm 
Hibernate Team
Hibernate Team

Joined: Tue Aug 26, 2003 7:19 pm
Posts: 2364
Location: Brisbane, Australia
See the documentation:
http://www.hibernate.org/hib_docs/reference/en/html/mapping.html#mapping-declaration-compositeid

You will use a composite key mapping with a property and a key-many-to-one.

You could use Middlegen to generate it for you - even as an education exercise.


Top
 Profile  
 
 Post subject:
PostPosted: Wed Jun 09, 2004 10:35 am 
Newbie

Joined: Tue Jun 08, 2004 12:15 pm
Posts: 2
I got that working, thanks


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.