Re: Mapping Advanced Oracle DataType

2008-04-30 Thread Don Lindsay
Hello; The short answer is no, not as a true object. You can do it through JDBC but that would be the hard way and circumvent EO. However since these types of objects are relational (I.E. a column in a table) you can create an entity that uses an sql statement to retrieve rows from

Mapping Advanced Oracle DataType

2008-04-29 Thread Metal Metal
Hi All, How can I map a user defined oracle datatype (eg. an array of oracle objects) in EO Modeler ? For example:- CREATE OR REPLACE TYPE phone_object AS OBJECT ( a_code CHAR(3), p_number CHAR(8)); / CREATE OR REPLACE TYPE PHONE_TABLE IS TABLE OF phone_object; / How can I map this