plsql 的测试窗口正在执行存储过程,可以关闭么?

2025年03月23日 01:24
有1个网友回答
网友(1):

你的这个procedure没有问题。
你可以在你的procedure里加一个打印语句,或者用下面的语句测试下(或类似于下面的语句调用你的包一下)
declare
result_
test_my.t_cursor;
begin
test_my.select_my(xxxx,
result_);
--xxxx你表里的数据
dbms_output.putline(result_.xxxx);
----xxxx游标所指的列
end