I used such code on Oracle 9 :
case i
when 0 then F(0);
when 1 then F(1);
when 2 then F(2);
when 3 then F(3);
end case;
after I moved to another server (Oracle 8) - get such error:
PLS-00103 : Encountered the symbol "CASE" when expecting one of the
following : ......
Does this limitation of version 8 ?
Thanks
case i
when 0 then F(0);
when 1 then F(1);
when 2 then F(2);
when 3 then F(3);
end case;
after I moved to another server (Oracle 8) - get such error:
PLS-00103 : Encountered the symbol "CASE" when expecting one of the
following : ......
Does this limitation of version 8 ?
Thanks
Comment