Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> TYPE becomes what in Java?

TYPE becomes what in Java?

From: Andy <dont_at_spam.me>
Date: Wed, 3 Nov 2004 16:36:21 +0100
Message-ID: <2usc7lF2eaakkU1@uni-berlin.de>


I'm writing a PL/SQL package that is partly present below. As you see I have a record type called inSvarRec. How am I suppose to transform this to a type that is known by Java, i e what do replace the ?????? with below?

declare

    TYPE inSvarRec IS RECORD
    (

        NAME VARCHAR2(400),
        ADRESS VARCHAR2(140),

    );

function Test2_(rec IN inSvarRec) return varchar2 is language java name 'jsXmlTest.test2( ?????? ) return String';

function Test2(rec IN inSvarRec) return varchar2 is begin

    return Test2_(rec);
end; Received on Wed Nov 03 2004 - 09:36:21 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US