CLOSE_CURSOR v17
The CLOSE_CURSOR
procedure closes an open cursor. The resources allocated to the cursor are released and you can no longer use it.
Note
When you convert a cursor using TO_REFCURSOR
, you cannot call CLOSE_CURSOR
for that cursor.
Parameters
c
Cursor ID of the cursor to be closed.
Examples
This example closes an open cursor:
- On this page
- Parameters
- Examples