4 Replies Latest reply on Dec 18, 2006 1:35 PM by epbernard

    Is there a way to map Oracle

      Hi,

      It was asked to me to create an Entity mapping including a column of this type :

      CREATE OR REPLACE TYPE FW_CLASS_ARRAY AS VARRAY (1024) OF VARCHAR2(8);

      So the table looks like this :

      CREATE TABLE FW_IMPORT_MODEL
      (
      ID INTEGER NOT NULL PRIMARY KEY,
      ...
      CLASS_LIST FW_CLASS_ARRAY,
      );

      I wondered if it was just possible to extend the EJB3/Hibernate framework to let him understand such a "thing". Any Idea ?

      Bernard