This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author kippesp
Recipients kippesp
Date 2008-03-19.17:26:18
SpamBayes Score 0.22868308
Marked as misclassified No
Message-id <1205947581.08.0.648809036566.issue2426@psf.upfronthosting.co.za>
In-reply-to
Content
Without the command line interface to sqlite3, there is no easy method
of extracting a database into an SQL dump file.  This creates a problem
should a user want to create an in-memory database (which is useful for
a performance boost) and then save the data for later use.  It also
would be useful should the sqlite3 command not be installed.

The attached patch implements this feature as a method of the Connection
class.
History
Date User Action Args
2008-03-19 17:26:21kippespsetspambayes_score: 0.228683 -> 0.22868308
recipients: + kippesp
2008-03-19 17:26:21kippespsetspambayes_score: 0.228683 -> 0.228683
messageid: <1205947581.08.0.648809036566.issue2426@psf.upfronthosting.co.za>
2008-03-19 17:26:20kippesplinkissue2426 messages
2008-03-19 17:26:20kippespcreate