Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix typos and poor wording in cintro.html |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | branch-3.20 |
Files: | files | file ages | folders |
SHA3-256: |
becd70e3fa464b3e3c275529852aee88 |
User & Date: | drh 2017-09-29 12:10:27.951 |
Context
2017-09-29
| ||
12:11 | Fix another typo in cintro.html (check-in: 3454b92ec6 user: drh tags: branch-3.20) | |
12:10 | Fix typos and poor wording in cintro.html (check-in: becd70e3fa user: drh tags: branch-3.20) | |
2017-09-27
| ||
09:47 | Fix two minor typos. (check-in: f4e38c11f1 user: drh tags: branch-3.20) | |
Changes
Changes to pages/cintro.in.
︙ | ︙ | |||
114 115 116 117 118 119 120 | Many of these routines come in multiple versions. For example, the list above shows a single routine named [sqlite3_open()] when in fact there are three separate routines that accomplish the same thing in slightly different ways: [sqlite3_open()], [sqlite3_open16()] and [sqlite3_open_v2()]. The list mentions [sqlite3_column_int | sqlite3_column()] when in fact no such routine exists. | | | | 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 | Many of these routines come in multiple versions. For example, the list above shows a single routine named [sqlite3_open()] when in fact there are three separate routines that accomplish the same thing in slightly different ways: [sqlite3_open()], [sqlite3_open16()] and [sqlite3_open_v2()]. The list mentions [sqlite3_column_int | sqlite3_column()] when in fact no such routine exists. The "sqlite3_column()" shown in the list is a placeholder for an entire family of routines that extra column data in various datatypes. </p> <p> Here is a summary of what the core interfaces do: </p> |
︙ | ︙ |