From f95cfc09f6f9f569f6a9db93c39e8b56069b0b0e Mon Sep 17 00:00:00 2001 From: Lee Gaines Date: Thu, 22 Mar 2018 09:29:27 -0700 Subject: [PATCH] typo/grammar fix Changes "cursor execute" to "cursor executes" on line 388. --- doc/user_guide.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/user_guide.rst b/doc/user_guide.rst index 0ce88ae..86a8b17 100644 --- a/doc/user_guide.rst +++ b/doc/user_guide.rst @@ -385,7 +385,7 @@ threadsafety SSCursor (which uses ``mysql_use_result()``; with the latter you must ensure all the rows have been read before another query can be executed. It is further complicated by the addition of - transactions, since transactions start when a cursor execute a + transactions, since transactions start when a cursor executes a query, but end when ``COMMIT`` or ``ROLLBACK`` is executed by the Connection object. Two threads simply cannot share a connection while a transaction is in progress, in addition to