Hibernate version: 3.0.5
Name and version of the database you are using: Oracle 10g
Sorry for my poor English...
I created Parent and Child tables using surrogate key like:
create table Parent (
gid varchar2(32), // uuid surrogate key
key1 int,
key2 int);
create table Child (
gid varchar2(32), // uuid surrogate key generated
parent_key1 int,
parent_key2 int,
something int);
(note that foreign key consists of two columns...)
and I want to use one-to-many mapping on Parent but I couldn't find out how to describe the mapping file.
Any comments would be appreciated.
Thank you in advance,
tohkawa
|