Here is a more efficient approach to using a cursor in Oracle:
And then from within the loop you can access elements in the cursor record like this:
FOR myCursor_rec IN myCursor LOOP
...
END LOOP;
And then from within the loop you can access elements in the cursor record like this:
myCursor_rec.vAuthSeq;
Comments
Post a Comment