Was this helpful?
Closing Cursors
To close a cursor, issue the CLOSE cursor statement:
EXEC SQL CLOSE cursor_name;
After the cursor is closed, no more processing can be performed with it unless another OPEN statement is issued. The same cursor can be opened and closed any number of times in a single program. A cursor must be closed before it can be reopened.
Last modified date: 02/03/2024