1 – cursor-name-parameter
Contains the name of the cursor you want to declare. Use a character string parameter to hold the cursor name that the program supplies at run time.
2 – FOR statement id parameter
A parameter that contains an integer that identifies a prepared SELECT statement. Use an integer parameter to hold the statement identifier that SQL generates and assigns to the parameter when SQL executes a PREPARE statement.
3 – INSERT_ONLY
Specifies that a new list or a new row is created or opened.
4 – LIST_CURSOR_FOR
Specifies that you are declaring a cursor to access the elements in a list.
5 – preserve-clause
Syntax options: PRESERVE ON COMMIT PRESERVE ON ROLLBACK PRESERVE ALL PRESERVE NONE Specifies when a cursor remains open. o PRESERVE ON COMMIT On commit, all cursors close except those defined with the WITH HOLD PRESERVE ON COMMIT syntax. On rollback, all cursors close including those defined with the WITH HOLD PRESERVE ON COMMIT syntax. This is the same as specifying the WITH HOLD clause without any preserve options. o PRESERVE ON ROLLBACK On rollback, all cursors close except those defined with the WITH HOLD PRESERVE ON ROLLBACK syntax. On commit, all cursors close including those defined with the WITH HOLD PRESERVE ON ROLLBACK syntax. o PRESERVE ALL All cursors remain open after commit or rollback. Cursors close with the CLOSE statement or when the session ends. o PRESERVE NONE All cursors close after a close, commit, or rollback statement, when the program stops, or when you exit from interactive SQL. This is the same as not specifying the WITH HOLD clause at all.
6 – READ_ONLY
Specifies that the cursor is not used to update the database.
7 – SCROLL
Specifies that Oracle Rdb can read the items in a list from either direction (up or down) or at random.
8 – TABLE_CURSOR_FOR
Specifies that you are declaring a cursor to access the rows in a table.
9 – UPDATE_ONLY
Specifies that the cursor is used to update the database.
10 – WITH_HOLD
Indicates that the cursor remain open and maintain its position after the transaction ends. This is called a holdable cursor.