How to call a procedure with associative arrays in Oracle from Java
问题 I have an stored procedure that looks like this: TYPE ref_cursor IS REF CURSOR; TYPE parametro IS RECORD ( nombre VARCHAR2(50), -- I want to remove this value and make it the key of the table instead. valor VARCHAR2(32000), tipo VARCHAR2(1), sentencia VARCHAR2(32000) ); TYPE parametros IS TABLE OF parametro INDEX BY VARCHAR2(50); PROCEDURE build_cursor ( params IN parametros results OUT ref_cursor ); And from the build_cursor procedure, I want to be able to access to the contents of the table