Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a typo in csv.html. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
ccee8fa12e0d9776cf4ad5fa4070cd36 |
User & Date: | drh 2018-11-16 01:45:15 |
Context
2018-11-16
| ||
14:30 | Explain the use of SQLITE_CONSTRAINT as a return value from xBestIndex. check-in: 52c277f049 user: drh tags: trunk | |
01:45 | Fix a typo in csv.html. check-in: ccee8fa12e user: drh tags: trunk | |
01:43 | Improvements to documentation on the CSV virtual table. check-in: c0ef40b603 user: drh tags: trunk | |
Changes
Changes to pages/csv.in.
109 110 111 112 113 114 115 116 |
<p> The column names of the virtual table are determined primarily by the <b>schema=</b> argument. If the <b>schema=</b> argument is omitted, but <b>header</b> is true, then the values found in the first line of the CSV file become the column names. If the <b>schema=</b> argument is omitted and <b>header</b> is false, then the columns are name "c0", "c1", "c2", and so forth. |
| |
109 110 111 112 113 114 115 116 |
<p>
The column names of the virtual table are determined primarily by the
<b>schema=</b> argument.
If the <b>schema=</b> argument is omitted, but <b>header</b> is true, then
the values found in the first line of the CSV file become the column names.
If the <b>schema=</b> argument is omitted and <b>header</b> is false, then
the columns are named "c0", "c1", "c2", and so forth.
|