[New-bugs-announce] [issue1509] Documentation lacking for the sqlite3 module.

Peter Mawhorter report at bugs.python.org
Wed Nov 28 03:10:42 CET 2007


New submission from Peter Mawhorter:

The current documentation for the sqlite3 module on the web fails to 
make any mention of the fetch* functions posessed by the Cursor class 
of that module. It in fact gives no indication of how one should 
extract results from sql queries. The docstrings in the module (viewed 
using the help() function) are woefully incomplete, and are 
inconsistent with the function names:

 |  fetchall(...)
 |      Fetches one row from the resultset.
 |  
 |  fetchmany(...)
 |      Fetches all rows from the resultset.
 |  
 |  fetchone(...)
 |      Fetches several rows from the resultset.
 |  

Both of these things need to be fixed in order for this module to be 
useful for someone who doesn't already know how to use it.

----------
components: Extension Modules
messages: 57900
nosy: pmawhorter
severity: minor
status: open
title: Documentation lacking for the sqlite3 module.
versions: Python 2.5

__________________________________
Tracker <report at bugs.python.org>
<http://bugs.python.org/issue1509>
__________________________________


More information about the New-bugs-announce mailing list