From: Gerhard Häring Date: Sat, 29 Mar 2008 19:11:52 +0000 (+0000) Subject: Documented the lastrowid attribute. X-Git-Tag: v2.6a2~30 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c15317efcd21015a2e076eb0413043c74d84056f;p=thirdparty%2FPython%2Fcpython.git Documented the lastrowid attribute. --- diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index 29d5e490b749..85925f4b453f 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -532,6 +532,12 @@ A :class:`Cursor` instance has the following attributes and methods: This includes ``SELECT`` statements because we cannot determine the number of rows a query produced until all rows were fetched. +.. attribute:: Cursor.lastrowid + + This read-only attribute provides the rowid of the last modified row. It is + only set if you issued a ``INSERT`` statement using the :meth:`execute` + method. For operations other than ``INSERT`` or when :meth:`executemany` is + called, :attr:`lastrowid` is set to :const:`None`. .. _sqlite3-types: