用pl/sql块进行测试:
declare
  w_rc       pkg_test.myrctype; --定义ref cursor型变量
 
  --定义临时变量,用于显示结果
  w_id       student.id%type;
  w_name     student.name%type;
  w_sex      student.sex%type;
  w_address  student.address%type;
  w_postcode student.postcode%type;
  w_birthday student.birthday%type;
 
begin
  --调用函数,获得记录集
  w_rc := pkg_test.get(1);
 
  --fetch结果并显示
 loop
 fetch w_rc into w_id,w_name,w_sex,w_address,w_postcode,w_birthday;
 exit when w_rc%notfound;
 dbms_output.put_line(w_name);
 end loop;
end;
 
4、测试结果:
通过。