How to MAP nested table,associative array or varray to JAVA SOURCE in Oracle DB
问题 I need to pass a collection to a JAVA SOURCE in the oracle database. This is the illustration of the current setup without collection where oracle varchar2 is mapped to java String and it is working fine The code below:- The java source:- import java.io.*; public class Test_java extends Object{ public static String print_test(String test) throws Exception { try{ System.out.println(test); return "UP"; } catch(Exception e) { return "DOWN" + e.getMessage(); } } }; The invoking function:- CREATE