Movatterモバイル変換


[0]ホーム

URL:



Facebook
Postgres Pro
Facebook
Downloads
DISCONNECT
Prev Up34.14. Embedded SQL CommandsHome Next

DISCONNECT

DISCONNECT — terminate a database connection

Synopsis

DISCONNECTconnection_nameDISCONNECT [ CURRENT ]DISCONNECT ALL

Description

DISCONNECT closes a connection (or all connections) to the database.

Parameters

connection_name#

A database connection name established by theCONNECT command.

CURRENT#

Close thecurrent connection, which is either the most recently opened connection, or the connection set by theSET CONNECTION command. This is also the default if no argument is given to theDISCONNECT command.

ALL#

Close all open connections.

Examples

intmain(void){    EXEC SQL CONNECT TO testdb AS con1 USER testuser;    EXEC SQL CONNECT TO testdb AS con2 USER testuser;    EXEC SQL CONNECT TO testdb AS con3 USER testuser;    EXEC SQL DISCONNECT CURRENT;  /* close con3          */    EXEC SQL DISCONNECT ALL;      /* close con2 and con1 */    return 0;}

Compatibility

DISCONNECT is specified in the SQL standard.


Prev Up Next
DESCRIBE Home EXECUTE IMMEDIATE
pdfepub
Go to Postgres Pro Standard 17
By continuing to browse this website, you agree to the use of cookies. Go toPrivacy Policy.

[8]ページ先頭

©2009-2025 Movatter.jp