如何使用嵌套列表作为参数调用oracle存储过程?
例如:CALL procedure(arg1)
,其中arg1
是list [1,2,[1,2,3]]
。我已经写了一个类型处理程序来映射参数,但是如何映射[1,2,3]
例如:伪代码
STRUCT struct = new STRUCT(structDescriptor, connection, new Object[]{1,2,?});
ArrayDescriptor = new ArrayDescriptor(arrayDescriptor ,connection, struct);
答案 0 :(得分:0)
我通过发送结构数组解决了它