5. Working with Embedded SQL : Data Manipulation with Cursors : Closing Cursors
 
Share this page                  
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.