-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
Consider we have array type in DB. For example nested table in oracle:
create type number_table as table of number;
and function which returns number_table:
function get_array return NUMBER_TABLE is
begin
return NUMBER_TABLE(1,2,3);
end;
We can execute this function in pure JDBC like that:
var call = connection.prepareCall("{? = call get_array}");
call.registerOutParameter(1, Types.ARRAY, "NUMBER_TABLE");// 3rd parameter not used in morejdbc for now
call.execute();
Metadata
Metadata
Assignees
Labels
No labels