Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Updates to the distinctive features page. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
ceb449161d4c2c8f704770b59c071b6e |
User & Date: | drh 2007-12-15 14:44:06.000 |
Context
2007-12-16
| ||
00:42 | Working on global [...]-style hyperlinks. This is an interim check-in in order to transfer from one machine to another. (check-in: a1c70893c6 user: drh tags: trunk) | |
2007-12-15
| ||
14:44 | Updates to the distinctive features page. (check-in: ceb449161d user: drh tags: trunk) | |
14:29 | Tweaks to the most-widely-deployed page. (check-in: e1613cdf0f user: drh tags: trunk) | |
Changes
Changes to pages/about.in.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | <title>About SQLite</title> <h3>About SQLite</h3> <table align="right" border="1" cellpadding="10" hspace="20" cellspacing="0"> <tr><td><small> <b>See Also...</b> <p><ul> <li> <a href="features.html">Features</a> </li> <li> <a href="faq.html">Frequently Asked Questions</a> </li> <li> <a href="famous.html">Well-known Users</a> </li> <li> <a href="quickstart.html">Getting Started</a> </li> <li> <a href="lang.html">SQL Syntax</a> </li> <li> <a href="c3ref/intro.html">C/C++ Interface Spec</a> </li> <li> <a href="http://www.sqlite.org/cvstrac/timeline">Timeline</a> </li> <li> <a href="http://www.sqlite.org/cvstrac/wiki">Wiki</a> </li> </ul></p> </small></td></tr> | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | <title>About SQLite</title> <h3>About SQLite</h3> <table align="right" border="1" cellpadding="10" hspace="20" cellspacing="0"> <tr><td><small> <b>See Also...</b> <p><ul> <li> <a href="features.html">Features</a> </li> <li> <a href="faq.html">Frequently Asked Questions</a> </li> <li> <a href="famous.html">Well-known Users</a> </li> <li> <a href="different.html">Distinctive Features</a> <li> <a href="quickstart.html">Getting Started</a> </li> <li> <a href="lang.html">SQL Syntax</a> </li> <li> <a href="c3ref/intro.html">C/C++ Interface Spec</a> </li> <li> <a href="http://www.sqlite.org/cvstrac/timeline">Timeline</a> </li> <li> <a href="http://www.sqlite.org/cvstrac/wiki">Wiki</a> </li> </ul></p> </small></td></tr> |
︙ | ︙ |
Changes to pages/different.in.
︙ | ︙ | |||
73 74 75 76 77 78 79 80 81 82 83 84 85 86 | files. Often these files are in a standard location that only the database engine itself can access. This makes the data more secure, but also makes it harder to access. Some SQL database engines provide the option of writing directly to disk and bypassing the filesystem all together. This provides added performance, but at the cost of considerable setup and maintenance complexity. } feature small {Compact} { When optimized for size, the whole SQLite library with everything enabled is less than 225KiB 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 170KiB if desired. | > > > > > > > > > > > > > > | 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | files. Often these files are in a standard location that only the database engine itself can access. This makes the data more secure, but also makes it harder to access. Some SQL database engines provide the option of writing directly to disk and bypassing the filesystem all together. This provides added performance, but at the cost of considerable setup and maintenance complexity. } feature onefile {Stable Cross-Platform Database File} { The SQLite file format is cross-platform. A database file written on one machine can be copied to and used on a different machine with a different architecture. Big-endian or little-endian, 32-bit or 64-bit does not matter. All machines use the same file format. Furthermore, the developers have pledged to keep the file format stable and backwards compatible, so newer versions of SQLite can read and write older database files. <p> 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 less than 225KiB 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 170KiB if desired. |
︙ | ︙ |