summaryrefslogtreecommitdiff
path: root/Doc/library/sqlite3.rst
diff options
context:
space:
mode:
authorcsabella <chekat2@gmail.com>2017-04-04 01:16:14 -0400
committerSenthil Kumaran <skumaran@gatech.edu>2017-04-03 22:16:14 -0700
commit02e12138000da834f23719521a011fa93763384d (patch)
treecae06c4c085bf3f3e84657f71afe7e7929f4ccf9 /Doc/library/sqlite3.rst
parentcf1958af4c762c970d1f2fa0e92577f577774c22 (diff)
downloadcpython-git-02e12138000da834f23719521a011fa93763384d.tar.gz
bpo-29725: DOC: add text for arraysize in sqlite3.Cursor (#947)
* bpo-29725: DOC: add text for arraysize in sqlite3.Cursor
Diffstat (limited to 'Doc/library/sqlite3.rst')
-rw-r--r--Doc/library/sqlite3.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
index d1f7a6f120..9fef7d7f03 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