I need to retrieve parts of the Blob column value. The blob may simply be to large for memory at runtime.
There is no way to retrieve part of a blob value in SQLite. From my understanding, most databases store blob values separate from the rest of the row. Would that be a possibility for SQLite? This would also solve the issue of blobs being read entirely into memory if a column defined after the blob column is retrieved. Regards, Kervin

