DISCONNECT
Parameters
- connection_name
A database connection name established by theCONNECT command.
- CURRENT
Close the"current" 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.
- DEFAULT
Close the default connection.
- ALL
Close all open connections.
Examples
intmain(void){ EXEC SQL CONNECT TO testdb AS DEFAULT USER testuser; 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 DEFAULT; /* close DEFAULT */ EXEC SQL DISCONNECT ALL; /* close con2 and con1 */ return 0;}