TYPE point IS RECORD (
X NUMBER, -- The X co-ordinate of the point
Y NUMBER -- The Y co-ordingate of the point
);
这是在我的包标题中定义的。然后将其用于同一包中定义的过程。我可以通过ODP.net调用该程序吗?
答案 0 :(得分:0)
我不知道您是否可以传递记录,但有关Using PL/SQL Associative Arrays 的文章可能有所帮助。
作者使用两个数组来传递min_salary
和max_salary
,您应该可以对x
和y
执行相同操作。