OPEN
Opens a declared cursor
OPEN cursor_name;
Argument | Description |
---|---|
cursor_name |
Cursor name.A cursor with this name must be previously declared with a |
An OPEN
statement opens a previously declared cursor, executes its declared SELECT
statement, and makes the first record of the result data set ready to fetch.OPEN
can be applied only to cursors previously declared in a [fblangref50-psql-declare-cursor] statement.
Note
|
If the |