可能重複:
Best way/tool to get the results from an oracle package procedure
Oracle SQL Developer: Show REFCURSOR Results in Grid?如何在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上面的查詢,我得到一個消息「anonymus塊完成」,其沒有表現出任何結果。
任何人都可以幫助我,如何看到結果。
。
你期待什麼輸出?你的「結果」在哪裏去?您可能想要編寫一個SELECT語句... – Randy 2011-12-22 22:46:59
期望結果集的行和列。 SP結果進入.NET程序。 我如何在光標上寫入一個選擇...一些示例會很好.. – 2011-12-22 22:52:17
使用Toad代替它會顯示refcursor的內容。 – 2011-12-23 16:10:53