Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a broken hyperlink in the different.html document. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
e518038151bd36d33af71102cf122250 |
User & Date: | drh 2013-03-29 12:17:33.149 |
Context
2013-03-29
| ||
13:47 | Redate the 3.7.16.1 release to 2013-03-29. (check-in: 5d46117c19 user: drh tags: trunk) | |
12:17 | Fix a broken hyperlink in the different.html document. (check-in: e518038151 user: drh tags: trunk) | |
2013-03-28
| ||
17:51 | Update the compile-time options page. Change all dates on the release history to ISO8601 format. (check-in: ce11667ff6 user: drh tags: trunk) | |
Changes
Changes to pages/different.in.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <title>Distinctive Features Of SQLite</title> <h1 align=center>Distinctive Features Of SQLite</h1> <p> This page highlights some of the characteristics of SQLite that are unusual and which make SQLite different from many other SQL database engines. </p> <tcl> proc feature {tag name text} { hd_fragment $tag hd_puts "<p><b>$name</b></p>\n" | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | <title>Distinctive Features Of SQLite</title> <h1 align=center>Distinctive Features Of SQLite</h1> <p> This page highlights some of the characteristics of SQLite that are unusual and which make SQLite different from many other SQL database engines. </p> <tcl> proc feature {tag name text} { hd_fragment $tag hd_puts "<p><b>$name</b></p>\n" hd_resolve "<blockquote>$text</blockquote>\n" } feature zeroconfig {Zero-Configuration} { SQLite does not need to be "installed" before it is used. There is no "setup" procedure. There is no server process that needs to be started, stopped, or configured. There is |
︙ | ︙ | |||
91 92 93 94 95 96 97 | Most other SQL database engines require you to dump and restore the database when moving from one platform to another and often when upgrading to a newer version of the software. } feature small {Compact} { When optimized for size, the whole SQLite library with everything enabled | | | 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 | Most other SQL database engines require you to dump and restore the database when moving from one platform to another and often when upgrading to a newer version of the software. } feature small {Compact} { When optimized for size, the whole SQLite library with everything enabled is [footprint | less than 400KiB in size] (as measured on an ix86 using the "size" utility from the GNU compiler suite.) Unneeded features can be disabled at compile-time to further reduce the size of the library to under 190KiB if desired. <p> Most other SQL database engines are much larger than this. IBM boasts that its recently released CloudScape database engine is "only" a 2MiB |
︙ | ︙ |