Javaでは、次のようなOracleプロシージャを使用しました:
CallableStatement cstmt = Connection.prepareCall("{CALL CmdtyStndrd.CmdtyStndrdProc(?)}");
cstmt.registerOutParameter(1, array_to_pass);
cstmt.execute();
そしてそれは機能します。
Javaでは、次のようなOracleプロシージャを使用しました:
CallableStatement cstmt = Connection.prepareCall("{CALL CmdtyStndrd.CmdtyStndrdProc(?)}");
cstmt.registerOutParameter(1, array_to_pass);
cstmt.execute();
そしてそれは機能します。