Oracle® Database PL/SQL Language Reference 11g Release 2 (11.2) Part Number E10472-05 |
|
|
View PDF |
The OPEN
statement opens an explicit cursor, allocates database resources to process the associated query, identifies the result set, and positions the cursor before the first row of the result set. (If the query has a FOR
UPDATE
clause, processing the query includes locking the rows of the result set—see "SELECT FOR UPDATE and FOR UPDATE Cursors".)
Topics:
Syntax
open_statement ::=
Semantics
cursor_name
The name of an explicit cursor that is not open.
actual_cursor_parameter
An actual parameter that corresponds to a formal parameter of the explicit cursor cursor_name
. For more information, see "Explicit Cursors that Accept Parameters".
Examples
Related Topics
In this chapter:
In other chapters: