Fix docs to not claim ECPG's SET CONNECTION is not thread-aware.
authorMichael Meskes
Tue, 6 Jun 2017 10:19:28 +0000 (12:19 +0200)
committerMichael Meskes
Wed, 7 Jun 2017 14:14:28 +0000 (16:14 +0200)
Changed by: Tsunakawa, Takayuki 

doc/src/sgml/ecpg.sgml

index 9382323bda892721605dc6ba9d4831f6e2b2d1b3..6e0716354a4e903c8621a04c563d7dcc34c97c25 100644 (file)
@@ -240,8 +240,7 @@ EXEC SQL AT connection-name SELECT ...;
   
    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.
   
 
   
@@ -251,7 +250,7 @@ EXEC SQL AT connection-name SELECT ...;
 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.