Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update the change log with SQLITE_DETERMINISTIC. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
5bc4dbf1517c274c040a331e12f9ab0c |
User & Date: | drh 2013-12-14 14:42:56.688 |
Context
2013-12-16
| ||
14:39 | When serving static content that has extra elements on the end of the URI, return a 301 to redirect to the base document, so that relative hyperlinks in the document will be correct. (check-in: 1682f2225f user: drh tags: trunk) | |
2013-12-14
| ||
14:42 | Update the change log with SQLITE_DETERMINISTIC. (check-in: 5bc4dbf151 user: drh tags: trunk) | |
12:40 | Add a change log for version 3.8.3. Fix a typo in the FAQ. (check-in: 0aa5202f33 user: drh tags: trunk) | |
Changes
Changes to pages/changes.in.
︙ | ︙ | |||
15 16 17 18 19 20 21 22 23 24 25 26 27 28 | proc chng {date desc {options {}}} { global nChng aChng set aChng($nChng) [list $date $desc $options] incr nChng } chng {2014-02-?? (3.8.3)} { <li>Add [SQLITE_READONLY_DBMOVED] error code, returned at the beginning of a transaction, to indicate that the underlying database file has been renamed or moved out from under SQLite. <li>Performance enhancements. } chng {2013-12-06 (3.8.2)} { | > > > > | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | proc chng {date desc {options {}}} { global nChng aChng set aChng($nChng) [list $date $desc $options] incr nChng } chng {2014-02-?? (3.8.3)} { <li>Added [SQLITE_DETERMINISTIC] as an optional bit in the 4th argument to the [sqlite3_create_function()] and related interfaces, providing applications with the ability to create new functions that can be factored out of inner loops when they have constant arguments. <li>Add [SQLITE_READONLY_DBMOVED] error code, returned at the beginning of a transaction, to indicate that the underlying database file has been renamed or moved out from under SQLite. <li>Performance enhancements. } chng {2013-12-06 (3.8.2)} { |
︙ | ︙ |