TYPE point IS RECORD (
X NUMBER, -- The X co-ordinate of the point
Y NUMBER -- The Y co-ordingate of the point
);
这是在我的包头中定义的。然后在同一个包中定义的过程中使用它。我可以通过 ODP.net 调用该程序吗?
我不知道您是否可以传递记录,但有关Using PL/SQL Associative Arrays的文章可能会有所帮助。
作者用了两个数组来传递min_salary
and max_salary
,你应该可以用x
and做同样的事情y
。