是否可以使用 odp.net 传递 plsql 包头中定义的类型?
TYPE point IS RECORD (
X NUMBER, -- The X co-ordinate of the point
Y NUMBER -- The Y co-ordingate of the point
);
这是在我的包头中定义的。然后在同一包中定义的过程中使用它。我可以通过ODP.net调用该程序吗?
TYPE point IS RECORD (
X NUMBER, -- The X co-ordinate of the point
Y NUMBER -- The Y co-ordingate of the point
);
This is defined in my package header. It is then used in a procedure defined in the same package. Is it possible for me to call the procedure via ODP.net?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不知道你能不能传个记录,但是关于 使用 PL/SQL 关联数组可能会有所帮助。
作者使用两个数组来传递
min_salary
和max_salary
,您应该能够对x
和y
执行相同的操作>。I don't know if you can pass a record, but the article about Using PL/SQL Associative Arrays might help.
The author uses two arrays to pass
min_salary
andmax_salary
, you should be able to do the same withx
andy
.