diff options
author | Alex Naidis <alex.naidis@linux.com> | 2017-01-08 16:42:54 +0100 |
---|---|---|
committer | Alex Naidis <alex.naidis@linux.com> | 2017-01-08 16:45:08 +0100 |
commit | f6b82a31f00ea609a6e88fa86c50b85b473ce3cb (patch) | |
tree | e6e620f6a5a2ada6b76ff5afa5e750551564934c /dist/sqlite3.h | |
parent | daab835640c06f160ae9b515763e471e77effde9 (diff) |
sqlite: upgrade to SQLite 3.16.2
Downloaded from https://sqlite.org/2017/sqlite-amalgamation-3160200.zip
$ sha256sum sqlite-amalgamation-3160200.zip
3ea98729366ec1d38d13a860aa10cfe29a355bfe089c32080987e2771514c42b sqlite-amalgamation-3160200.zip
dist/orig contains the stock sqlite3 code, as packaged in the ZIP file above.
dist contains a copy of dist/orig, but with the Android.patch file applied.
Please see Android.patch for a list of differences between stock and
Android.
The Android specific patch applied cleanly and was regenerated.
This minor release contains critical bug fixes.
More details about the release are available here: https://sqlite.org/releaselog/3_16_2.html
Change-Id: I6ce37ee6b95f8b47bf9935cd19430d102361a7d4
Signed-off-by: Alex Naidis <alex.naidis@linux.com>
Diffstat (limited to 'dist/sqlite3.h')
-rw-r--r-- | dist/sqlite3.h | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/dist/sqlite3.h b/dist/sqlite3.h index 33910e0..35fa417 100644 --- a/dist/sqlite3.h +++ b/dist/sqlite3.h @@ -121,9 +121,9 @@ extern "C" { ** [sqlite3_libversion_number()], [sqlite3_sourceid()], ** [sqlite_version()] and [sqlite_source_id()]. */ -#define SQLITE_VERSION "3.16.1" -#define SQLITE_VERSION_NUMBER 3016001 -#define SQLITE_SOURCE_ID "2017-01-03 18:27:03 979f04392853b8053817a3eea2fc679947b437fd" +#define SQLITE_VERSION "3.16.2" +#define SQLITE_VERSION_NUMBER 3016002 +#define SQLITE_SOURCE_ID "2017-01-06 16:32:41 a65a62893ca8319e89e48b8a38cf8a59c69a8209" /* ** CAPI3REF: Run-Time Library Version Numbers @@ -3896,8 +3896,12 @@ SQLITE_API int sqlite3_clear_bindings(sqlite3_stmt*); ** METHOD: sqlite3_stmt ** ** ^Return the number of columns in the result set returned by the -** [prepared statement]. ^This routine returns 0 if pStmt is an SQL -** statement that does not return data (for example an [UPDATE]). +** [prepared statement]. ^If this routine returns 0, that means the +** [prepared statement] returns no data (for example an [UPDATE]). +** ^However, just because this routine returns a positive number does not +** mean that one or more rows of data will be returned. ^A SELECT statement +** will always have a positive sqlite3_column_count() but depending on the +** WHERE clause constraints and the table content, it might return no rows. ** ** See also: [sqlite3_data_count()] */ |