Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp
Hibernate version:2.1
Hello
i have an emploeyee table with the following fields:
CREATE TABLE employee
(
oid char(15) not null primary key,
boss_oid char(15),
first_name varchar(20),
last_name varchar(20),
birth_date date,
hire_date date,
marital_status char(1)
)type=innodb;
boss_oid is the oid of the supervisior or manager of an employee.
so how can i map this association?
pls reply me in details.
i will be grateful to hibrenate team.
thank you
Chinmoy