Computing Staff
  • 1

Is There Alternative To Continue In For-Loop In Forms 6i?

  • 1

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;

Share

1 Answer

  1. 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

    • 0