I have the following stored procedure:
procedure getInfo ( p_ids IN IDS_TABLE, p_details OUT cursor )
Run Code Online (Sandbox Code Playgroud)
Type IDS_TABLE is:
create or replace type IDS_TABLE as table of IDS
create or replace type IDS as object ( id1 NUMBER, id2 NUMBER, id3 NUMBER )
Run Code Online (Sandbox Code Playgroud)
How can I call getInfo in Java?