diff options
author | dartraiden <wowemuh@gmail.com> | 2022-07-18 16:43:54 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2022-07-18 16:43:54 +0300 |
commit | 19577610078486badbfdf804e700a224d6ceadb2 (patch) | |
tree | 69689305a163fb116928e738115d9f6c17fcbd27 /libs/sqlite3/src/sqlite3.h | |
parent | dfa0a59f0ca06c9e7880bb55cdd7a6d09dc50eff (diff) |
SQLite: update to 3.39.1
Diffstat (limited to 'libs/sqlite3/src/sqlite3.h')
-rw-r--r-- | libs/sqlite3/src/sqlite3.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/sqlite3/src/sqlite3.h b/libs/sqlite3/src/sqlite3.h index 26b4a31fd2..4b49d6c5ee 100644 --- a/libs/sqlite3/src/sqlite3.h +++ b/libs/sqlite3/src/sqlite3.h @@ -146,9 +146,9 @@ extern "C" { ** [sqlite3_libversion_number()], [sqlite3_sourceid()], ** [sqlite_version()] and [sqlite_source_id()]. */ -#define SQLITE_VERSION "3.39.0" -#define SQLITE_VERSION_NUMBER 3039000 -#define SQLITE_SOURCE_ID "2022-06-25 14:57:57 14e166f40dbfa6e055543f8301525f2ca2e96a02a57269818b9e69e162e98918" +#define SQLITE_VERSION "3.39.1" +#define SQLITE_VERSION_NUMBER 3039001 +#define SQLITE_SOURCE_ID "2022-07-13 19:41:41 7c16541a0efb3985578181171c9f2bb3fdc4bad6a2ec85c6e31ab96f3eff201f" /* ** CAPI3REF: Run-Time Library Version Numbers @@ -6282,7 +6282,7 @@ SQLITE_API sqlite3 *sqlite3_db_handle(sqlite3_stmt*); ** ** ^The sqlite3_db_name(D,N) interface returns a pointer to the schema name ** for the N-th database on database connection D, or a NULL pointer of N is -** out of range. An N alue of 0 means the main database file. An N of 1 is +** out of range. An N value of 0 means the main database file. An N of 1 is ** the "temp" schema. Larger values of N correspond to various ATTACH-ed ** databases. ** |