Small, Fast, Reliable.
Choose any three.

SQLite C Interface

Read Data From A BLOB Incrementally

int sqlite3_blob_read(sqlite3_blob *, void *z, int n, int iOffset);

This function is used to read data from an open blob-handle into a caller supplied buffer. n bytes of data are copied into buffer z from the open blob, starting at offset iOffset.

On success, SQLITE_OK is returned. Otherwise, an SQLite error code or an extended error code is returned.

See also lists of Objects, Constants, and Functions.


This page last modified 2007/11/22 00:41:31 UTC