Multiple choice

Which of the following statements is incorrect regarding '%FOUND' cursor attribute in PL/SQL?

  1. Returns INVALID_CURSOR if cursor is declared, but not open or if cursor has been closed.

  2. Returns NULL if cursor is open, but fetch has not been executed.

  3. Returns TRUE if a successful fetch has been executed.

  4. Returns FALSE if no row was returned.

  5. Returns the number of rows fetched.

Reveal answer Fill a bubble to check yourself
E Correct answer
Explanation

Yes, it is correct as it does not return the number of rows to be fetched.