Skip Headers
Oracle® Database PL/SQL Language Reference
11g Release 2 (11.2)

Part Number E10472-02
Go to Documentation Home
Home
Go to Book List
Book List
Go to Table of Contents
Contents
Go to Index
Index
Go to Master Index
Master Index
Go to Feedback page
Contact Us

Go to previous page
Previous
Go to next page
Next
View PDF

OPEN Statement

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 ::=

open_statement
Description of the illustration open_statement.gif

Semantics

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".

cursor_name

The name of an explicit cursor that is not open.

Examples

Related Topics

In this chapter:

In other chapters: