summaryrefslogtreecommitdiffstats
path: root/Lib/sqlite3/dump.py
Commit message (Collapse)AuthorAgeFilesLines
* #15545: fix sqlite3.iterdump regression on unsortable row_factory objects.R David Murray2013-01-101-1/+2
| | | | | | | | | The fix for issue 9750 introduced a regression by sorting the row objects returned by fetchall. But if a row_factory such as sqlite3.Row is used, the rows may not be sortable (in Python3), which leads to an exception. The sorting is still a nice idea, so the patch moves the sort into the sql. Fix and test by Peter Otten.
* Fix sqlite3.Connection.iterdump on tables/fields with reserved names or quotesPetri Lehtinen2012-02-121-22/+28
| | | | Closes #9750
* Added missing files for new iterdump method.Gerhard Häring2008-03-291-0/+63