Table of Contents
close -- close a cursor
close [cursor_name]
Close frees the resources associated with a cursor, cursor_name. After
this cursor is closed, no subsequent operations are allowed on it. A cursor
should be closed when it is no longer needed. If cursor_name. is not specified,
then the blank cursor is closed.
/*
* close the cursor FOO
*/
close FOO
fetch(l)
, select(l)
.
Table of Contents