diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/sqlite.h.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/sqlite.h.in b/src/sqlite.h.in index ef1c3ab0f..08feb48d7 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -30,7 +30,7 @@ ** the version number) and changes its name to "sqlite3.h" as ** part of the build process. ** -** @(#) $Id: sqlite.h.in,v 1.307 2008/04/19 14:06:28 drh Exp $ +** @(#) $Id: sqlite.h.in,v 1.308 2008/04/24 08:56:54 danielk1977 Exp $ */ #ifndef _SQLITE3_H_ #define _SQLITE3_H_ @@ -5276,10 +5276,11 @@ int sqlite3_blob_bytes(sqlite3_blob *); ** the [sqlite3_blob_read(P,Z,N,X)] interface returns an ** appropriate [error code] or [extended error code]. ** -** {F17868} If an error occurs during evaluation of [sqlite3_blob_read(D,...)] +** {F17868} If an error occurs during evaluation of [sqlite3_blob_read(P,...)] ** then subsequent calls to [sqlite3_errcode(D)], ** [sqlite3_errmsg(D)], and [sqlite3_errmsg16(D)] will return -** information approprate for that error. +** information approprate for that error, where D is the +** database handle that was used to open blob handle P. */ int sqlite3_blob_read(sqlite3_blob *, void *Z, int N, int iOffset); |