【发布时间】:2018-11-02 23:20:25
【问题描述】:
如何调用以嵌套列表为参数的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);
【问题讨论】: