0
我需要驗證一個具有out遊標參數的過程。具體而言,我需要查看什麼是檢索。如何在PLSQL塊中探索出遊標參數?
我試試這個:
declare
type cursor_out is ref cursor;
cur cursor_out;
fila activ_economica%rowtype;
procedure test(algo out cursor_out) is
begin
open algo for select * from activ_economica;
end;
begin
test(cur);
for i in cur loop
fila := i;
dbms_output.put(fila.id_activ_economica ||' ');
dbms_output.put_line(fila.nom_activ_economica);
end loop;
end;
的錯誤是 「小人」 一直沒有被定義。
excelent,我搜索了很多,我找不到任何東西,你救了我一天的工作:D – mjsr