Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> TYPE becomes what in Java?
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
![]() |
![]() |