dblink_disconnect <refpurpose>closes a persistent connection to a remote database</refpurpose> — リモートデータベースへの永続的な接続を閉ざします
dblink_disconnect() returns text dblink_disconnect(text connname) returns text
<function>dblink_disconnect()</function> closes a connection previously opened
by <function>dblink_connect()</function>. The form with no arguments closes
an unnamed connection.
dblink_disconnect()
はdblink_connect()
で開かれた既存の接続を閉ざします。
引数がない構文では無名の接続を閉ざします。
connname
The name of a named connection to be closed. 閉ざす名前付き接続の名前です。
Returns status, which is always <literal>OK</literal> (since any error
causes the function to throw an error instead of returning).
状態を返します。
これは常にOK
です(何らかのエラーが起きるとこの関数は戻らずエラーとなるためです)。
SELECT dblink_disconnect(); dblink_disconnect ------------------- OK (1 row) SELECT dblink_disconnect('myconn'); dblink_disconnect ------------------- OK (1 row)