close.l
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. ." This is -*-nroff-*-
  2. ." XXX standard disclaimer belongs here....
  3. ." $Header: /usr/local/cvsroot/pgsql/src/man/Attic/close.l,v 1.3 1998/01/11 22:17:09 momjian Exp $
  4. .TH CLOSE SQL 11/05/95 PostgreSQL PostgreSQL
  5. .SH NAME
  6. close - close a cursor
  7. .SH SYNOPSIS
  8. .nf
  9. fBclosefP [cursor_name]
  10. .fi
  11. .SH DESCRIPTION
  12. .BR Close
  13. frees the resources associated with a cursor,
  14. .IR cursor_name.
  15. After this cursor is closed, no subsequent operations are allowed on
  16. it.  A cursor should be closed when it is no longer needed.  If
  17. .IR cursor_name. 
  18. is not specified, then the blank cursor is closed.
  19. .SH EXAMPLE
  20. .nf
  21. /*
  22.  * close the cursor FOO
  23.  */
  24. close FOO
  25. .fi
  26. .SH "SEE ALSO"
  27. fetch(l),
  28. select(l).