The DISCONNECT statement terminates a connection with a DBEnvironment
or terminates all DBEnvironment connections
established within an application or an ISQL session.
Example |
 |
Connect three times to PartsDBE and once to SalesDBE:
CONNECT TO :PartsDBE AS 'Parts1'
CONNECT TO :PartsDBE AS 'Parts2'
CONNECT TO :PartsDBE AS 'Parts3'
CONNECT TO :SalesDBE AS 'Sales1'
.
.
.
|
Terminate the connection associated with connection name Parts1:
Terminate the connection associated with the most recently connected
DBEnvironment (the current connection). Following the execution of this
statement, SalesDBE is no longer connected, and no current connection exists:
Note that another DISCONNECT CURRENT statement at this point would
generate an error. Also any SQL statement that operates on a transaction will
fail since there is no current connection and therefore no current transaction.
Set the current connection to Parts3:
{{SET CONNECTION 'Parts3'}}
|
Terminate the connection associated with the most recently connected DBE
(the current connection). Following the execution of this statement,
the Parts3 connection to PartsDBE no longer exists, and no current connection exists:
Terminate all established connections. Following this statement, the Parts2
connection to PartsDBE no longer exists: