What is a cursor for loop?

Cursor For Loop is a loop where oracle implicitly declares a loop variable, the loop index that of the same record type as the cursor's record.

Showing Answers 1 - 12 of 12 Answers

syam sundar

  • Aug 17th, 2007
 

In cursor for loop all cursor jobs are controled by loop.
means incursor for loop %open, %fetch, %close and %found
user need not bother about that

  Was this answer useful?  Yes

g_sidhu

  • Feb 6th, 2008
 

The cursor FOR loop is a shortcut to process
explicit cursors.
Implicit open, fetch, exit, and close occur.
The record is implicitly declared.

  Was this answer useful?  Yes

narmadac

  • Feb 11th, 2010
 

A cursor for loop can be used instead of explicit cursors.  A cursor for loop  implicitly opens, fetches rows, closes a cursor.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions