1.

What Are The Cursor Attributes Used In Pl/sql ?

Answer»
  • %ISOPEN - to CHECK whether cursor is OPEN or not.
  • % ROWCOUNT - number of rows fetched/updated/deleted.
  • % FOUND - to check whether cursor has fetched any row. TRUE if rows are fetched.
  • % NOT FOUND - to check whether cursor has fetched any row. True if no rows are featched.

These attributes are proceeded with SQL for Implicit CURSORS and with Cursor name for EXPLICIT Cursors.

These attributes are proceeded with SQL for Implicit Cursors and with Cursor name for Explicit Cursors.



Discussion

No Comment Found