Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Clarify the operation of sqlite3_blob_close() in the API documentation. Ticket #2815. (CVS 4589) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
78f359dffa6f4af4d5b7e4523f451e0e |
User & Date: | drh 2007-12-04 13:22:44.000 |
Context
2007-12-04
| ||
13:41 | Fix a bug in the TCL code for sqlite3_analyzer. (CVS 4590) (check-in: 7c2cf45428 user: drh tags: trunk) | |
13:22 | Clarify the operation of sqlite3_blob_close() in the API documentation. Ticket #2815. (CVS 4589) (check-in: 78f359dffa user: drh tags: trunk) | |
2007-12-03
| ||
21:52 | Do not require os_other.h if compiling with -DOS_OTHER=1. (CVS 4588) (check-in: 96ec39031e user: drh tags: trunk) | |
Changes
Changes to src/sqlite.h.in.
︙ | ︙ | |||
39 40 41 42 43 44 45 | ** The requirement number comes first and is enclosed in curly ** braces. The F prefix identifies functional requirements. ** The requirement consists of all text up through the next ** {...} mark or until the end of the comment. Text following ** {EX} is an explanatory amplification of the preceding requirement. ** Both the {EX} and the {END} are optional. ** | | | 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | ** The requirement number comes first and is enclosed in curly ** braces. The F prefix identifies functional requirements. ** The requirement consists of all text up through the next ** {...} mark or until the end of the comment. Text following ** {EX} is an explanatory amplification of the preceding requirement. ** Both the {EX} and the {END} are optional. ** ** @(#) $Id: sqlite.h.in,v 1.274 2007/12/04 13:22:44 drh Exp $ */ #ifndef _SQLITE3_H_ #define _SQLITE3_H_ #include <stdarg.h> /* Needed for the definition of va_list */ /* ** Make sure we can call this stuff from C++. |
︙ | ︙ | |||
3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 | sqlite3_blob **ppBlob ); /* ** CAPI3REF: Close A BLOB Handle ** ** Close an open [sqlite3_blob | blob handle]. */ int sqlite3_blob_close(sqlite3_blob *); /* ** CAPI3REF: Return The Size Of An Open BLOB ** ** Return the size in bytes of the blob accessible via the open | > > > > > > > > > > | 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 | sqlite3_blob **ppBlob ); /* ** CAPI3REF: Close A BLOB Handle ** ** Close an open [sqlite3_blob | blob handle]. ** ** Closing a BLOB might cause the current transaction to commit. ** If any writes were made to the BLOB, they might be held in cache ** until the close operation. Closing the BLOB forces the changes ** out to disk and so if any I/O errors occur, they will likely occur ** at the time when the BLOB is closed. Any errors that occur during ** closing are reported as a non-zero return value. ** ** The BLOB is closed unconditionally. Even if this routine returns ** an error code, the BLOB is still closed. */ int sqlite3_blob_close(sqlite3_blob *); /* ** CAPI3REF: Return The Size Of An Open BLOB ** ** Return the size in bytes of the blob accessible via the open |
︙ | ︙ |