Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update the SQLite used internally to the first 3.6.21 release candidate. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
f3d4a2db535a12c11b4ab28eba94421c |
User & Date: | drh 2009-11-23 13:21:26.000 |
Context
2009-11-25
| ||
22:14 | Update to the latest version of SQLite with improved sqlite3_trace() support. This makes the output of --sqltrace much more helpful. ... (check-in: 732d7c40 user: drh tags: trunk) | |
2009-11-23
| ||
13:21 | Update the SQLite used internally to the first 3.6.21 release candidate. ... (check-in: f3d4a2db user: drh tags: trunk) | |
2009-11-14
| ||
14:38 | In the file_isdir() routine, make sure the filename is simplified (has no "/../" or "/./" components and does not end with "/") in order to work around bugs in mingw. ... (check-in: a7822bcc user: drh tags: trunk) | |
Changes
Changes to src/sqlite3.c.
more than 10,000 changes
Changes to src/sqlite3.h.
︙ | ︙ | |||
115 116 117 118 119 120 121 | ** ** See also: [sqlite3_libversion()], ** [sqlite3_libversion_number()], [sqlite3_sourceid()], ** [sqlite_version()] and [sqlite_source_id()]. ** ** Requirements: [H10011] [H10014] */ | | | | | 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 | ** ** See also: [sqlite3_libversion()], ** [sqlite3_libversion_number()], [sqlite3_sourceid()], ** [sqlite_version()] and [sqlite_source_id()]. ** ** Requirements: [H10011] [H10014] */ #define SQLITE_VERSION "3.6.21" #define SQLITE_VERSION_NUMBER 3006021 #define SQLITE_SOURCE_ID "2009-11-23 13:17:27 39214aee6553db76309851e7aa74fcc02d4f59b7" /* ** CAPI3REF: Run-Time Library Version Numbers {H10020} <S60100> ** KEYWORDS: sqlite3_version ** ** These interfaces provide the same information as the [SQLITE_VERSION], ** [SQLITE_VERSION_NUMBER], and [SQLITE_SOURCE_ID] #defines in the header, |
︙ | ︙ |