Movatterモバイル変換


[0]ホーム

URL:



Facebook
Postgres Pro
Facebook
Downloads
dblink_close
Prev UpF.11. dblinkHome Next

dblink_close

dblink_close — closes a cursor in a remote database

Synopsis

dblink_close(text cursorname [, bool fail_on_error]) returns textdblink_close(text connname, text cursorname [, bool fail_on_error]) returns text

Description

dblink_close closes a cursor previously opened withdblink_open.

Arguments

connname

Name of the connection to use; omit this parameter to use the unnamed connection.

cursorname

The name of the cursor to close.

fail_on_error

If true (the default when omitted) then an error thrown on the remote side of the connection causes an error to also be thrown locally. If false, the remote error is locally reported as a NOTICE, and the function's return value is set toERROR.

Return Value

Returns status, eitherOK orERROR.

Notes

Ifdblink_open started an explicit transaction block, and this is the last remaining open cursor in this connection,dblink_close will issue the matchingCOMMIT.

Examples

SELECT dblink_connect('dbname=postgres options=-csearch_path='); dblink_connect---------------- OK(1 row)SELECT dblink_open('foo', 'select proname, prosrc from pg_proc'); dblink_open------------- OK(1 row)SELECT dblink_close('foo'); dblink_close-------------- OK(1 row)

Prev Up Next
dblink_fetch Home dblink_get_connections
epubpdf
Go to PostgreSQL 10
By continuing to browse this website, you agree to the use of cookies. Go toPrivacy Policy.

[8]ページ先頭

©2009-2025 Movatter.jp