Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add the onefile.html page and a link from the about.html page. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
61a0a369be95c95d166d6b912720a3d1 |
User & Date: | drh 2007-11-13 20:53:06.000 |
Context
2007-11-14
| ||
01:01 | Fix a bug on the download.in page. (check-in: defefcd9eb user: drh tags: trunk) | |
2007-11-13
| ||
20:53 | Add the onefile.html page and a link from the about.html page. (check-in: 61a0a369be user: drh tags: trunk) | |
20:23 | Fix up the news section, the download page, and the menu bar. Break up changes into individual files. All links are now resolved, we think. (check-in: b202aab6a1 user: drh tags: trunk) | |
Changes
Changes to pages/about.in.
︙ | ︙ | |||
14 15 16 17 18 19 20 | <li><a href="transactional.html">Transactions</a> are atomic, consistent, isolated, and durable (ACID) even after system crashes and power failures.</li> <li><a href="zeroconf.html">Zero-configuration</a> - no setup or administration needed.</li> <li>Implements most of SQL92. (<a href="omitted.html">Features not supported</a>)</li> | | | < | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | <li><a href="transactional.html">Transactions</a> are atomic, consistent, isolated, and durable (ACID) even after system crashes and power failures.</li> <li><a href="zeroconf.html">Zero-configuration</a> - no setup or administration needed.</li> <li>Implements most of SQL92. (<a href="omitted.html">Features not supported</a>)</li> <li>A complete database is stored in a <a href="onefile.html">single cross-platform disk file</a>.</li> <li>Supports terabyte-sized databases and gigabyte-sized strings and blobs. (See <a href="limits.html">limits.html</a>.) <li>Small code footprint: <a href="http://www.sqlite.org/cvstrac/wiki?p=SizeOfSqlite"> less than 250KiB</a> fully configured or less than 150KiB with optional features omitted.</li> <li><a href="speed.html">Faster</a> than popular client/server database |
︙ | ︙ | |||
41 42 43 44 45 46 47 | another project. <li><a href="selfcontained.html">Self-contained</a>: no external dependencies.</li> <li>Cross-platform: Linux (unix), MacOSX, OS/2, Win32 and WinCE are supported out of the box. Easy to port to other systems. <li>Sources are in the <a href="copyright.html">public domain</a>. Use for any purpose.</li> | | | | | 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | another project. <li><a href="selfcontained.html">Self-contained</a>: no external dependencies.</li> <li>Cross-platform: Linux (unix), MacOSX, OS/2, Win32 and WinCE are supported out of the box. Easy to port to other systems. <li>Sources are in the <a href="copyright.html">public domain</a>. Use for any purpose.</li> <li>Comes with a standalone <a href="sqlite.html">command-line interface</a> (CLI) client that can be used to administer SQLite databases.</li> </ul> </p> <h3>Suggested Uses:</h3> <p><ul> <li><p><b>Application File Format.</b> Rather than using fopen() to write XML or some proprietary format into disk files used by your application, use an SQLite database instead. You'll avoid having to write and troubleshoot a parser, your data will be more easily accessible and cross-platform, your updates will transactional.</p></li> <li><p><b>Database For Gadgets.</b> SQLite is popular choice for the database engine in cellphones, PDAs, MP3 players, set-top boxes, and other electronic gadgets. SQLite has a small code footprint, makes efficient use of memory, disk space, and disk bandwidth, is highly reliable, and requires no maintenance from a Database Adminstrator.</p></li> |
︙ | ︙ |