typo/grammar fix

Changes "cursor execute" to "cursor executes" on line 388.
This commit is contained in:
Lee Gaines
2018-03-22 09:29:27 -07:00
committed by GitHub
parent 9178048a16
commit f95cfc09f6

View File

@ -385,7 +385,7 @@ threadsafety
SSCursor (which uses ``mysql_use_result()``; with the latter you SSCursor (which uses ``mysql_use_result()``; with the latter you
must ensure all the rows have been read before another query can must ensure all the rows have been read before another query can
be executed. It is further complicated by the addition of 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 query, but end when ``COMMIT`` or ``ROLLBACK`` is executed by
the Connection object. Two threads simply cannot share a the Connection object. Two threads simply cannot share a
connection while a transaction is in progress, in addition to connection while a transaction is in progress, in addition to