Documentation Source Text

Check-in [becd70e3fa]
Login

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: becd70e3fa464b3e3c275529852aee8869526957d6545350b28df3ce31a6fe37
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
Unified Diff Ignore Whitespace Patch
Changes to pages/cintro.in.
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 place holders for
  an entire family of routines to be used for extracting column
  data in various datatypes.
</p>

<p>
  Here is a summary of what the core interfaces do:
</p>








|
|







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>