In the below code, Continue is not accepted in oracle forms 6i.
Can anyone help me on alternative to Continue statement?
Example:
declare
cursor list is
select name from Emp;
begin
for CurrName in list
loop
begin
select DeptID from Dept where emp_name = CurrName.name;
exception
when others then
continue;
end;
end loop;
end;
since this has been sitting for a while, I noticed this page that was associated with the problem. perhaps this might be able to help.
http://stackoverflow.com/questions/…
:: mike