◐ Shell
reader mode source ↗

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 jim_minter
Recipients jim_minter
Date 2015-08-21.08:05:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1440144321.97.0.0781853247945.issue24905@psf.upfronthosting.co.za>
In-reply-to
Content
SQLite supports incremental I/O to blobs, i.e. the capability to stream reads and writes to blobs without having to load the entire blob into memory first.  See https://www.sqlite.org/c3ref/blob_open.html for more details on the C API.

It'd be nice if it were possible to do this in Python using sqlite3 (it is already possible with apsw).
History
Date User Action Args
2015-08-21 08:05:22jim_mintersetrecipients: + jim_minter
2015-08-21 08:05:21jim_mintersetmessageid: <1440144321.97.0.0781853247945.issue24905@psf.upfronthosting.co.za>
2015-08-21 08:05:21jim_minterlinkissue24905 messages
2015-08-21 08:05:21jim_mintercreate