грешката ще бъде messaget := testcursor.column1;
тъй като курсорът е затворен дотогава (трябва просто да използвате testcursorrec.column2
.
вашият код не проверява нито за редове, нито за дублиращи се редове. можете да опростите това до
create or replace function testfunction
(
somevalue in table1.column1%type
)
return table1.column2%type
AS
messaget table1.column2%type; -- use %type where possible.
begin
select t.column2
into messaget
from table1 t
where t.column1 = somevalue
and rownum = 1;--only if you dont care if theres 2+ rows.
return messaget;
exception
when no_data_found
then
return null; -- if you want to ignore no rows.
end;