Changed by: Tsunakawa, Takayuki
If your application uses multiple threads of execution, they cannot share a
connection concurrently. You must either explicitly control access to the connection
- (using mutexes) or use a connection for each thread. If each thread uses its own connection,
- you will need to use the AT clause to specify which connection the thread will use.
+ (using mutexes) or use a connection for each thread.
EXEC SQL SET CONNECTION connection-name;
This option is particularly convenient if many statements are to be
- executed on the same connection. It is not thread-aware.
+ executed on the same connection.