New submission from Jim Minter:
Python 3.3.2 (default, Mar 5 2014, 08:21:05)
[GCC 4.8.2 20131212 (Red Hat 4.8.2-7)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import email.header
&g
New submission from Jim Minter:
sqlite3 doesn't populate the lastrowid member of the Cursor object when a SQL
REPLACE statement is executed.
The following snippet doesn't work as I would expect:
cursor = db.execute("REPLACE INTO table(column) VALUES ('datum')")
pr
New submission from Jim Minter:
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