by 윤영헌 [2007.01.10 13:12:11]
list를 가져오려면 cursor type으로 result set를 가져오는 방법을 사용해야 합니다.
create or replace test
( refcur out sys_refcursor
)
is
begin
OPEN REFCUR FOR
select * from test
end