-->
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: Name of primary keys in DDL
PostPosted: Tue Aug 14, 2007 8:32 am 
Newbie

Joined: Tue Aug 14, 2007 8:09 am
Posts: 1
We generate DDL scripts based on Hibernate mappings. We need to name the primary keys (due to our customer's wish) like

Constraint PK_ADDRESS primary key (ADDRESS_ID)


Our mapping
<class name="Address" table="ADDRESS">
<id column="ADDRESS_ID" name="pk" type="java.lang.Long">
<generator class="sequence" />
</id>
...

result in the following output

create table ADDRESS (
ADDRESS_ID number(19,0) not null,

primary key (ADDRESS_ID)
);


Does anyone know how to add the name to a primary key? We use 'foreign-key' to name the foreign keys, it works properly.

Thanks!


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.