Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update the amalgamation.html page. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
d8e32e270eb7b15ac9becf10f9fc4530 |
User & Date: | drh 2009-12-01 15:41:03.000 |
Context
2009-12-02
| ||
03:14 | Add the FTS3 documentation to the categorized documentation listing page. (check-in: 8de37e9f07 user: drh tags: trunk) | |
2009-12-01
| ||
15:41 | Update the amalgamation.html page. (check-in: d8e32e270e user: drh tags: trunk) | |
15:30 | Fix two more typos in examples in fts3.in. (check-in: d075300786 user: dan tags: trunk) | |
Changes
Changes to pages/amalgamation.in.
1 2 3 4 5 | <title>The SQLite Amalgamation</title> <tcl>hd_keywords {amalgamation} {the amalgamation}</tcl> <h2>The SQLite Amalgamation</h2> | | | | | | | | | | 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 | <title>The SQLite Amalgamation</title> <tcl>hd_keywords {amalgamation} {the amalgamation}</tcl> <h2>The SQLite Amalgamation</h2> <p>The core SQLite library consists of about 96 files of C code (as of [Version 3.6.21]) in the core with 11 additional files in the [FTS3] and [RTREE] extensions. Most of these are "source" files in the sense that they are stored in the configuration management system and are maintained directly. But 6 of the core C files are generated automatically during the compilation process. Of the 96 code files, 76 are C code and 20 are C header files.</p> <p>The standard makefiles for SQLite have a target for building an object we call the "amalgamation". The amalgamation is a single C code file, named "sqlite3.c", that contains all C code for the core SQLite library and the [FTS3] and [RTREE] extensions. This file contains about 110K lines of code (65K if you omit blank lines and comments) and is over 3.8 megabytes in size.</p> <p>The amalgamation contains everything you need to integrate SQLite into a larger project. Just copy the amalgamation into your source directory and compile it along with the other C code files in your project. You may also want to make use of the "sqlite3.h" header file that defines the programming API for SQLite. |
︙ | ︙ |