Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Miscellaneous typo fixes and minor enhancements. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
1a236e279d6518f0d33afac620370ccb |
User & Date: | drh 2018-05-31 17:37:17.285 |
Context
2018-05-31
| ||
19:14 | Typo fixes. (check-in: db85f0efae user: drh tags: trunk) | |
17:37 | Miscellaneous typo fixes and minor enhancements. (check-in: 1a236e279d user: drh tags: trunk) | |
16:43 | Create a News article about the 3.24.0 release. (check-in: 6cb0e35932 user: drh tags: trunk) | |
Changes
Changes to pages/assert.in.
︙ | ︙ | |||
51 52 53 54 55 56 57 | <p>The ALWAYS(X) and NEVER(X) macros are a weaker statement about the truth of X. The presence of ALWAYS(X) or NEVER(X) means that the developers believe X is always or never true, but there is no proof, or the proof is complex and error-prone, or the proof depends on other aspects of the system that seem likely to change. | | | 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | <p>The ALWAYS(X) and NEVER(X) macros are a weaker statement about the truth of X. The presence of ALWAYS(X) or NEVER(X) means that the developers believe X is always or never true, but there is no proof, or the proof is complex and error-prone, or the proof depends on other aspects of the system that seem likely to change. <p>Other systems sometimes use assert(X) in a way that is similar to the use of ALWAYS(X) or NEVER(X) in SQLite. Developers will add an assert(X) as a [https://blog.regehr.org/archives/1576|tacit acknowledgement that they do not fully believe that X is always true]. We believe that this use of assert(X) is wrong and violates the intent and purpose of having assert(X) available in C in the first place. An assert(X) should not be seen as a safety-net or top-rope used to |
︙ | ︙ |
Changes to pages/crew.in.
1 2 3 4 5 | <title>SQLite Developers</title> <tcl>hd_keywords {crew} {Hipp} {Kennedy}</tcl> <fancy_format> | < < | 1 2 3 4 5 6 7 8 9 10 11 12 | <title>SQLite Developers</title> <tcl>hd_keywords {crew} {Hipp} {Kennedy}</tcl> <fancy_format> <img src="images/drh1.jpg" align="left" hspace="25" vspace="0"> <p> <b>D. Richard Hipp </b> began the SQLite project on 2000-05-29 and continues to serve as the project architect. Richard was born, lives, and works in [http://en.wikipedia.org/wiki/Charlotte,_North_Carolina | Charlotte, North Carolina.] He holds degrees from |
︙ | ︙ |
Changes to pages/lts.in.
︙ | ︙ | |||
91 92 93 94 95 96 97 | This means that application written to use SQLite today should be able to link against and use future versions of SQLite released decades in the future. <p> Our goal is to make the content you store in SQLite today as easily accessible to your grandchildren as it is to you. | > > > > > > > > | 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 | This means that application written to use SQLite today should be able to link against and use future versions of SQLite released decades in the future. <p> Our goal is to make the content you store in SQLite today as easily accessible to your grandchildren as it is to you. <p> <b>Update on 2018-05-39:</b> Our goal of supporting SQLite long-term have apparently come to the notice of the preservations at the [https://www.loc.gov|US Library Of Congress] who have identified SQLite as a [recommended storage format] for the preservation of digital content. |
Changes to pages/onefile.in.
︙ | ︙ | |||
28 29 30 31 32 33 34 | compatible. </p> <p> The stability of the SQLite database file format and the fact that the file format is cross-platform combine to make SQLite database files an excellent choice as an | | > > > > | 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | compatible. </p> <p> The stability of the SQLite database file format and the fact that the file format is cross-platform combine to make SQLite database files an excellent choice as an [Application File Format]. The US Library Of Congress acknowledges this by listing SQLite as a [recommended storage format] for long-term preservation of digital content. </p> </p> <hr> <div style='font-size: 75%;'> <p>Notes: <ol> <li>Temporary journal files are created as part of transaction control, |
︙ | ︙ |
Changes to pages/versionnumbers.in.
︙ | ︙ | |||
16 17 18 19 20 21 22 | <p> All SQLite releases starting with 3.9.0 use a three-number "[http://semver.org|semantic version]" of the form X.Y.Z. The first number X is only increased when there is a change that breaks backward compatibility. The current value for X is 3, and the SQLite developers plan to support the current SQLite database file format, SQL syntax, and C interface | | | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | <p> All SQLite releases starting with 3.9.0 use a three-number "[http://semver.org|semantic version]" of the form X.Y.Z. The first number X is only increased when there is a change that breaks backward compatibility. The current value for X is 3, and the SQLite developers plan to support the current SQLite database file format, SQL syntax, and C interface through [long term support|at least the year 2050]. Hence, one can expect that all future versions of SQLite for the next several decades will begin with "3.". <p> The second number Y is incremented for any change that breaks forward compatibility by adding new features. Most future SQLite releases are expected |
︙ | ︙ |