how do oracle stored procedures (w/ cursors) work?
问题 I have a following oracle stored procedure CREATE OR REPLACE PROCEDURE getRejectedReasons ( p_cursor IN OUT SYS_REFCURSOR) AS BEGIN OPEN p_cursor FOR SELECT * FROM reasons_for_rejection; END; However, when I run this stored procedure in sql-developer then I dont see anything. I just see something like this: Connecting to the database oracleLocal. Process exited. Disconnecting from the database oracleLocal. I'm coming from MS sql server and am used to seeing actual results when running a