Mapping PL/SQL types to java objects
317308Feb 25 2003 — edited Mar 3 2003I'm using a Oracle 8i database with its ORDBMS featurs. I have som PL/SQL types containing some nestedtables with other types. I have i PL/SQL function that returns a custumer type.
function getCustomer( in custumerid number) return customert_t;
From my java program i'm calling this function. and returning it into a jdbc recordset. How can i map the PL/SQL type to a java class? Can i just use casting? Or du i have to pick det PL/SQL type apart?