File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ Go to the ``docs`` directory and run ``make html``.
17
17
Test Suite
18
18
-----------
19
19
20
- If you would like to run the test suite, create database for test like this::
20
+ If you would like to run the test suite, create a database for testing like this::
21
21
22
22
mysql -e 'create database test_pymysql DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci;'
23
23
mysql -e 'create database test_pymysql2 DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci;'
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ class Cursor(object):
23
23
This is the object you use to interact with the database.
24
24
"""
25
25
26
- #: Max stetement size which :meth:`executemany` generates.
26
+ #: Max statement size which :meth:`executemany` generates.
27
27
#:
28
28
#: Max size of allowed statement is max_allowed_packet - packet_header_size.
29
29
#: Default value of max_allowed_packet is 1048576.
@@ -403,8 +403,8 @@ class SSCursor(Cursor):
403
403
or for connections to remote servers over a slow network.
404
404
405
405
Instead of copying every row of data into a buffer, this will fetch
406
- rows as needed. The upside of this, is the client uses much less memory,
407
- and rows are returned much faster when traveling over a slow network,
406
+ rows as needed. The upside of this is the client uses much less memory,
407
+ and rows are returned much faster when traveling over a slow network
408
408
or if the result set is very big.
409
409
410
410
There are limitations, though. The MySQL protocol doesn't support
You can’t perform that action at this time.
0 commit comments