[issue2176] Undocumented lastrowid attribute i sqlite3 cursor class

2008-03-30 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: Gerhard: Note that you don't need to commit identical changes to the trunk and 3k branches -- the merging process will take care of this. __ Tracker <[EMAIL PROTECTED]>

[issue2176] Undocumented lastrowid attribute i sqlite3 cursor class

2008-03-29 Thread Gerhard Häring
Gerhard Häring <[EMAIL PROTECTED]> added the comment: The lastrowid attribute is now documented in r62044. Thanks for bringing this up. -- resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> _

[issue2176] Undocumented lastrowid attribute i sqlite3 cursor class

2008-03-29 Thread Gerhard Häring
Changes by Gerhard Häring <[EMAIL PROTECTED]>: -- assignee: georg.brandl -> ghaering nosy: +ghaering __ Tracker <[EMAIL PROTECTED]> __ ___ Pytho

[issue2176] Undocumented lastrowid attribute i sqlite3 cursor class

2008-03-28 Thread Georg Brandl
Changes by Georg Brandl <[EMAIL PROTECTED]>: -- priority: -> high __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscr

[issue2176] Undocumented lastrowid attribute i sqlite3 cursor class

2008-03-17 Thread Georg Brandl
Changes by Georg Brandl <[EMAIL PROTECTED]>: -- assignee: -> georg.brandl nosy: +georg.brandl __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs

[issue2176] Undocumented lastrowid attribute i sqlite3 cursor class

2008-03-02 Thread Pavel Vinogradov
Pavel Vinogradov added the comment: This patch include brief lastrowid description based on my experience and Python DB API 2.0 PEP. -- keywords: +patch nosy: +pavel.vinogradov Added file: http://bugs.python.org/file9582/lastrowid_rst_desctiption.diff __

[issue2176] Undocumented lastrowid attribute i sqlite3 cursor class

2008-02-24 Thread Jakub Fedyczak
New submission from Jakub Fedyczak: con = sqlite3.connect("file") c = con.cursor() c.execute("INSERT INTO .") last_id = c.lastrowid <--- nothing about it in the docs __ Tracker <[EMAIL PROTECTED]>

[issue2176] Undocumented lastrowid attribute i sqlite3 cursor class

2008-02-24 Thread Jakub Fedyczak
Changes by Jakub Fedyczak: -- components: Documentation nosy: bukaj severity: normal status: open title: Undocumented lastrowid attribute i sqlite3 cursor class versions: Python 2.5 __ Tracker <[EMAIL PROTECTED]> ___