Deactivates a cursor.
close cursor_name
close authors_crsr
The close command essentially removes the cursor’s result set. The cursor position within the result set is undefined for a closed cursor.
The SAP ASE server returns an error message if the cursor is already closed or does not exist.
ANSI SQL – Compliance level: Entry-level compliant.
No permission is required to use close.