Table of Contents

NAME

close -- close a cursor

SYNOPSIS

close [cursor_name]

DESCRIPTION

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.

EXAMPLE

/*
* close the cursor FOO
*/
close FOO

SEE ALSO

fetch(l) , select(l) .


Table of Contents