diff options
author | Senthil Kumaran <skumaran@gatech.edu> | 2017-04-04 05:27:15 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-04 05:27:15 (GMT) |
commit | cb1e002c07622e027e80a3843d27a623d1617430 (patch) | |
tree | 022497ebb1f35aee675ba345d97202dcdb5b7c07 /Doc/library | |
parent | d184c20e359907e326696724a3395ce1d542f42e (diff) | |
download | cpython-cb1e002c07622e027e80a3843d27a623d1617430.zip cpython-cb1e002c07622e027e80a3843d27a623d1617430.tar.gz cpython-cb1e002c07622e027e80a3843d27a623d1617430.tar.bz2 |
bpo-29725: DOC: add text for arraysize in sqlite3.Cursor (#947) (#985)
(cherry picked from commit 02e12138000da834f23719521a011fa93763384d)
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/sqlite3.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index d1f7a6f..9fef7d7 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -640,6 +640,11 @@ Cursor Objects .. versionchanged:: 3.6 Added support for the ``REPLACE`` statement. + .. attribute:: arraysize + + Read/write attribute that controls the number of rows returned by :meth:`fetchmany`. + The default value is 1 which means a single row would be fetched per call. + .. attribute:: description This read-only attribute provides the column names of the last query. To |