相关疑难解决方法(0)

如何在Oracle SQL Developer中查看refcursor结果/输出?

可能重复:
从oracle包过程中获取结果的最佳方法/工具
Oracle SQL Developer:在Grid中显示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;
Run Code Online (Sandbox Code Playgroud)

当我在我的Oracle SQL Developer中运行上述查询时,我收到一条消息'anonymus block completed'并且没有显示任何结果.

任何人都可以帮助我,如何看到结果.

.

oracle plsql ref-cursor oracle10g oracle-sqldeveloper

10
推荐指数
2
解决办法
8万
查看次数