diff options
author | drh <drh@noemail.net> | 2010-11-02 15:26:24 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2010-11-02 15:26:24 +0000 |
commit | 07bf3918f9af49b6e20a809cfa2afcc5b669e315 (patch) | |
tree | 9d027dbf2010436809fccbfffde64375026942a9 /src/sqlite.h.in | |
parent | e08c2066c93c9853b39d53b1cceafaa9f1d4b43d (diff) | |
download | sqlite-07bf3918f9af49b6e20a809cfa2afcc5b669e315.tar.gz sqlite-07bf3918f9af49b6e20a809cfa2afcc5b669e315.zip |
Add evidence marks for the sqlite3_blob_reopen() interface. Fix compiler
warnings in test1.c. Fix incorrect evidence marks on e_select.tcl.
FossilOrigin-Name: 3771faa88eda3eb91264ce0982e22f53596abd4b
Diffstat (limited to 'src/sqlite.h.in')
-rw-r--r-- | src/sqlite.h.in | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/sqlite.h.in b/src/sqlite.h.in index 8ff8ab78f..e08d5ce59 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -3370,10 +3370,10 @@ int sqlite3_reset(sqlite3_stmt *pStmt); ** SQL function or aggregate, pass NULL poiners for all three function ** callbacks. ** -** ^If the tenth parameter to sqlite3_create_function_v2() is not NULL, -** then it is destructor for the application data point that is invoked -** when the function is deleted, either by being -** overloaded or when the database connection closes. +** ^(If the tenth parameter to sqlite3_create_function_v2() is not NULL, +** then it is destructor for the application data pointer. +** The destructor is invoked when the function is deleted, either by being +** overloaded or when the database connection closes.)^ ** ^The destructor is also invoked if the call to ** sqlite3_create_function_v2() fails. ** ^When the destructor callback of the tenth parameter is invoked, it @@ -4793,23 +4793,23 @@ int sqlite3_blob_open( /* ** CAPI3REF: Move a BLOB Handle to a New Row ** -** This function is used to move an existing blob handle so that it points -** to a different row of the same database table. The new row is identified +** ^This function is used to move an existing blob handle so that it points +** to a different row of the same database table. ^The new row is identified ** by the rowid value passed as the second argument. Only the row can be -** changed, the database, table and column on which the blob handle is open +** changed. ^The database, table and column on which the blob handle is open ** remain the same. Moving an existing blob handle to a new row can be ** faster than closing the existing handle and opening a new one. ** -** The new row must meet the same criteria as for [sqlite3_blob_open()] - +** ^(The new row must meet the same criteria as for [sqlite3_blob_open()] - ** it must exist and there must be either a blob or text value stored in -** the nominated column. If the new row is not present in the table, or if +** the nominated column.)^ ^If the new row is not present in the table, or if ** it does not contain a blob or text value, or if another error occurs, an ** SQLite error code is returned and the blob handle is considered aborted. -** All subsequent calls to [sqlite3_blob_read()], [sqlite3_blob_write()] or +** ^All subsequent calls to [sqlite3_blob_read()], [sqlite3_blob_write()] or ** [sqlite3_blob_reopen()] on an aborted blob handle immediately return ** SQLITE_ABORT. ** -** This function sets the database handle error code and message. +** ^This function sets the database handle error code and message. */ SQLITE_EXPERIMENTAL int sqlite3_blob_reopen(sqlite3_blob *, sqlite3_int64); |