Boa tarde.
Estou tentando criar a função abaixo e não estou conseguindo.
O Que estou fazerndo de errado.
Utilizo o SqlNavigator
————————————————————————–
FUNCTION VER_AREAS(pIdentidicador varchar2)
RETURN types.cursorType IS
l_cursor types.cursorType;
BEGIN
open l_cursor for select * from Areas where Identificador = pIdentidicador
order by Identificador;
return l_cursor;
EXCEPTION
WHEN ZERO_DIVIDE THEN
RETURN “”;
WHEN NO_DATA_FOUND THEN
RETURN “”;
END VER_AREAS;
———————————————————————–
E está me aparendo estes erros:
PLS-00201: o identificador ‘TYPES.CURSORTYPE’ deve ser declarado
Alguem pode me ajudar.
Nunca trabalhei com cursor.
Agradeço antecipadamente.