Oracle
 sql >> Datenbank >  >> RDS >> Oracle

Wie teste ich eine gespeicherte Oracle-Prozedur mit dem Rückgabetyp RefCursor?

So etwas wie

create or replace procedure my_proc( p_rc OUT SYS_REFCURSOR )
as
begin
  open p_rc
   for select 1 col1
         from dual;
end;
/

variable rc refcursor;
exec my_proc( :rc );
print rc;

funktioniert in SQL*Plus oder SQL Developer. Ich habe keine Erfahrung mit Embarcardero Rapid XE2, daher habe ich keine Ahnung, ob es SQL*Plus-Befehle wie diesen unterstützt.