Joined: Mon Jan 31, 2011 4:01 pm Posts: 2
|
I am new to hibernate, I am trying to figure out how to map the following. All expert’s help appreciated in advance. I am using oracle as my database
I have a oracle collection type
CREATE OR REPLACE TYPE STRINGLIST AS TABLE OF VARCHAR2(50) /
I have a table CREATE TABLE T_TALLENTS ( PROFILES STRINGLIST ) NESTED TABLE PROFILES STORE AS T_PROFILES;
I would like to know how can I access the values of PROFILES fields from T_TALLENTS table. Please help with some sample mapping on this approach. Thanks
|
|