如何在 Oracle SQL Developer 中查看引用游标结果/输出?
可能的重复:
获取结果的最佳方法/工具来自 oracle 包过程
Oracle SQL Developer:在网格中显示 REFCURSOR 结果?
Oracle SQL Developer 新手。我正在使用 Oracle SQL Developer 版本 3.0。 我试图使用以下查询来测试我的 SP。
DECLARE
type output_cursor is ref cursor;
P_CURSOR output_cursor;
BEGIN
P_CURSOR := NULL;
myPackage.mySPTest ( P_NOTIFICATION_ID => 1975357,P_CURSOR => P_CURSOR) ;
END;
当我在 Oracle SQL Developer 中运行上述查询时,我收到一条消息“匿名块已完成”并且未显示任何结果。
谁能帮助我,如何查看结果。
。
Possible Duplicate:
Best way/tool to get the results from an oracle package procedure
Oracle SQL Developer: Show REFCURSOR Results in Grid?
I am new to Oracle SQL Developer. I am using Oracle SQL Developer Version 3.0.
I was trying to test my SP using the following query.
DECLARE
type output_cursor is ref cursor;
P_CURSOR output_cursor;
BEGIN
P_CURSOR := NULL;
myPackage.mySPTest ( P_NOTIFICATION_ID => 1975357,P_CURSOR => P_CURSOR) ;
END;
When I ran the above query in my Oracle SQL Developer, I am getting a message 'anonymus block completed' and its not showing any result.
Can anyone help me, how to see the result.
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 SQL Developer 中声明的绑定变量来保存并显示结果:
exec
是匿名块的简写,因此这相当于:除非将
P_CURSOR
声明为某物没有帮助,也许...You can use a bind variable declared in SQL Developer to hold and show the results:
exec
is shorthand for an anonymous block so this is equivalent to:Unless
P_CURSOR
is declared as something unhelpful, maybe...要查看光标结果,您需要循环光标并打印值。您需要知道光标返回的内容的列名称。你可以这样做:
To view your cursor results you need to loop through your cursor and print values. You need to know column names for what your cursor is returning. You can do something like: