| Oracle® Database PL/SQL Language Reference 11g Release 2 (11.2) Part Number E17126-03 |
|
|
View PDF |
The CLOSE statement closes a named cursor, thereby allowing its resources to be reused.
After closing an explicit cursor, you can reopen it with the OPEN statement. You must close an explicit cursor before reopening it.
After closing a cursor variable, you can reopen it with the OPEN FOR statement. You need not close a cursor variable before reopening it.
Topics:
Syntax
close_statement ::=

Semantics
cursor_name
The name of an open explicit cursor.
cursor_variable_name
The name of an open cursor variable.
host_cursor_variable_name
The name of a cursor variable declared in a PL/SQL host environment and passed to PL/SQL as a bind argument. Do not put space between the colon (:) and host_cursor_variable_name.
The data type of a host cursor variable is compatible with the return type of any PL/SQL cursor variable.
Examples
Related Topics
In this chapter:
In other chapters: