Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update the "features.html" page to the version found on trunk. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | branch-3.8.8 |
Files: | files | file ages | folders |
SHA1: |
2f5fb6f4d1d77022ca4a75737cd6b585 |
User & Date: | drh 2015-03-04 20:49:30.362 |
Context
2015-03-09
| ||
19:42 | Fix a typo in the tempfiles.html page. (check-in: 3f2102936f user: drh tags: branch-3.8.8) | |
2015-03-04
| ||
20:49 | Update the "features.html" page to the version found on trunk. (check-in: 2f5fb6f4d1 user: drh tags: branch-3.8.8) | |
16:57 | Fix a typo in the new executive summary of the c-language intro. (check-in: 69e5764941 user: drh tags: branch-3.8.8) | |
Changes
Changes to pages/features.in.
1 2 3 4 5 6 7 8 9 10 | <title>Features Of SQLite</title> <h1 align=center>Features Of SQLite</h1> <p><ul> <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> | | > > | | | > > > > > > > < < < < < < < > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 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 68 69 70 71 72 73 74 | <title>Features Of SQLite</title> <h1 align=center>Features Of SQLite</h1> <p><ul> <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><a href="lang.html">Full SQL implementation</a> with advanced features like [partial indexes] and [common table expressions]. (<a href="omitted.html">Omitted features</a>)</li> <li>A complete database is stored in a <a href="onefile.html">single cross-platform disk file</a>. Great for use as an [application file format].</li> <li>Supports terabyte-sized databases and gigabyte-sized strings and blobs. (See <a href="limits.html">limits.html</a>.) <li>Small code [footprint]: less than 500KiB fully configured or much less with optional features omitted.</li> <li>Simple, easy to use <a href="cintro.html">API</a>.</li> <li>Written in ANSI-C. <a href="tclsqlite.html">TCL bindings</a> included. Bindings for dozens of other languages available separately.</li> <li>Well-commented source code with [test coverage |100% branch test coverage].</li> <li>Available as a <a href="amalgamation.html">single ANSI-C source-code file</a> that is [how to compile|easy to compile] and hence is easy to add into a larger project. <li><a href="selfcontained.html">Self-contained</a>: no external dependencies.</li> <li>Cross-platform: Android, *BSD, iOS, Linux, Mac, Solaris, VxWorks, and Windows (Win32, WinCE, WinRT) 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 [command-line interface] (CLI) client that can be used to administer SQLite databases.</li> </ul> </p> <h2>Suggested Uses For SQLite:</h2> <p><ul> <li><p><b>Database For The Internet Of Things.</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 Administrator.</p></li> <li><p><b>Application File Format.</b> Rather than using fopen() to write XML, JSON, CSV, or some proprietary format into disk files used by your application, use an SQLite database. You'll avoid having to write and troubleshoot a parser, your data will be more easily accessible and cross-platform, and your updates will be transactional. ([application file-format | more...])</p></li> <li><p><b>Website Database.</b> Because it requires no configuration and stores information in ordinary disk files, SQLite is a popular choice as the database to back small to medium-sized websites.</p></li> <li><p><b>Stand-in For An Enterprise RDBMS.</b> SQLite is often used as a surrogate for an enterprise RDBMS for demonstration purposes or for testing. SQLite is fast and requires no setup, which takes a lot of the hassle out of testing and which makes demos perky and easy to launch.</p></li> <li><p><a href="./whentouse.html">More suggestions...</a></p></li> </ul> |