Re: [sqlite] Blob incremental i/o via Python

2008-02-14 Thread Norman Young
On Thu, Feb 14, 2008 at 6:19 PM, <[EMAIL PROTECTED]> wrote: > "Samuel Neff" <[EMAIL PROTECTED]> wrote: > > If the images you're storing are larger than the defined page size for > the > > database (which is most likely the case) then you can get better > performance > > and reduced memory

Re: [sqlite] Blob incremental i/o via Python

2008-02-14 Thread Norman Young
On Wed, Feb 13, 2008 at 7:54 PM, Roger Binns <[EMAIL PROTECTED]> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Norman Young wrote: > > We had to exclude references to sqlite3_enable_load_extension and > > sqlite3_load_extension from within apsw.

Re: [sqlite] Blob incremental i/o via Python

2008-02-13 Thread Norman Young
On Feb 12, 2008 4:04 AM, Roger Binns <[EMAIL PROTECTED]> wrote: > > Norman Young wrote: > > Can this same interface be accessed in Python? > > That API has to be wrapped. > > > Can this be done from Python via the sqlite3 module? Can you point me to > > exam

[sqlite] Blob incremental i/o via Python

2008-02-11 Thread Norman Young
The documentation outlines the C interface for incremental blob input/output, and mentions the C typedef for a blob handle. http://www.sqlite.org/c3ref/blob_open.html http://www.sqlite.org/c3ref/blob.html typedef struct sqlite3_blob sqlite3_blob; Can this same interface be accessed in Python?