CF9 ORM - One-To-One Mapping, Repeated Column Error

2009-09-22 Thread Jeff Chastain
I am looking at the one-to-one relationship, unique foreign key mapping example in the ColdFusion 9 ORM documentation .. http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WS5FFD2854-7F18-43ea-B 383-161E007CE0D1.html#WS606584AD-43B2-48c1-B9E6-69A670694BBB . and I am wondering why the

Re: CF9 ORM - One-To-One Mapping, Repeated Column Error

2009-09-22 Thread Brian Kotek
fkcolumn should specify the name of the foreign key column, not the name of the primary key on the other table. In most cases this attribute shouldn't need to be specified at all, Hibernate will create a column for the foreign key automatically. So either the docs are just badly worded, or they