请问下,   我在PL/sql中设置了set serveroutput on; 然后打算输出一个东西.create or replace procedure pro1 is       type my_cursor is ref cursor ;
      
      v_cursor my_cursor;
      
      v_name emp%rowtype;
     
begin 
      open  v_cursor for select * from emp ;
      loop
            fetch v_cursor into v_name;
            exit when v_cursor%NOTFOUND;
            dbms_output.put_line(v_name.ename || v_name.empno || v_name.sal);
      end loop ;
      close v_cursor;
   
end ;执行以后终端上总是没有任何输出`只有procedure created求解下是什么原因