oracle11g - Calling stored procedure with JPA - pass a custom object -


i have procedure on oracle database:

type r_age record (id  varchar2(100),                       min  varchar2(100),                       max  varchar2(100));  type t_ages table of r_age index binary_integer;  procedure synchronize_ages (p_ages in t_ages,                             err_code out varchar2,                             err_desc out varchar2); 

i want call procedure using jpa because of type of p_ages don't know how it. if in type number or varchar2 easy, in example type more complex , got stuck. unfortunately can't change procedure. use jpa 2.1 , hibernate 5.2. there chance invoke procedure?


Comments