4 SET CONNECTION — select a database connection
8 SET CONNECTION [ TO | = ] connection_name
12 SET CONNECTION sets the “current” database connection, which is the one
13 that all commands use unless overridden.
18 A database connection name established by the CONNECT command.
21 Set the connection to the current connection (thus, nothing
26 EXEC SQL SET CONNECTION TO con2;
27 EXEC SQL SET CONNECTION = con1;
31 SET CONNECTION is specified in the SQL standard.