Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

PLS-00363: expression 'I' cannot be used as an assignment target

LuKKaJun 11 2013 — edited Jun 11 2013


Hello all

I have a Package and I have one procedure in it .

I have use dmlset inside this .

Inside that procedure I have a cursor and inside the FOR loop I have mentioned something .

FOR i IN 1 .. No_of_rec LOOP

If....

End if ;

i := i+1 ;

END LOOP;

I have mentioned before end loop i := i+1 ; when i execute this package it is showing this error .

"PLS-00363: expression 'I' cannot be used as an assignment target"

What could be the problem?

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jul 9 2013
Added on Jun 11 2013
13 comments
4,055 views