.\" This is -*-nroff-*- .\" XXX standard disclaimer belongs here.... .\" $Header: /usr/local/cvsroot/pgsql/src/man/close.l,v 1.3 1998/01/11 22:17:09 momjian Exp $ .\" .\" Japanese Version Copyright (c) 1998 Michihide Hotta .\" all rights reserved. .\" Translated Wed Jun 3 18:46:34 JST 1998 .\" by Michihide Hotta .\" .TH CLOSE SQL 11/05/95 PostgreSQL PostgreSQL .\"0 .SH NAME .\"0 close - close a cursor .SH 名前 close - カーソルをクローズする .\"0 .SH SYNOPSIS .\"0 .nf .\"0 \fBclose\fP [cursor_name] .\"0 .fi .SH 書式 .nf \fBclose\fP [カーソル名] .fi .\"0 .SH DESCRIPTION .\"0 .BR Close .\"0 frees the resources associated with a cursor, .\"0 .IR cursor_name. .\"0 After this cursor is closed, no subsequent operations are .\"0 allowed on it. A cursor should be closed when it is no .\"0 longer needed. If .\"0 .IR cursor_name. .\"0 is not specified, then the blank cursor is closed. .SH 説明 .BR Close は、カーソル .IR カーソル名 に関連付けられた資源を解放する。カーソルがクローズされた後は、 その後のカーソル操作はできなくなる。もはや使われなくなった カーソルはクローズした方が良い。 .IR カーソル名 が指定されなかった場合は、ブランクカーソル(blank cursor)が クローズされる。 .\"0 .SH EXAMPLE .\"0 .nf .\"0 /* .\"0 * close the cursor FOO .\"0 */ .\"0 close FOO .\"0 .fi .SH 例 .nf /* * カーソル FOO をクローズする */ close FOO .fi .\"0 .SH "SEE ALSO" .SH "関連事項" fetch(l), select(l). .SH 翻訳者 堀田 倫英