Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a typo in the vtab document. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
21057196723fc5d0e3345aeb3f9a5a3a |
User & Date: | drh 2018-01-22 18:05:15.468 |
Context
2018-01-22
| ||
18:07 | Fix a typo in the change log for 3.22.0. (check-in: abd84d1d06 user: drh tags: trunk) | |
18:05 | Fix a typo in the vtab document. (check-in: 2105719672 user: drh tags: trunk) | |
17:58 | Fix a typo in the CLI document. (check-in: dece3aa0cc user: drh tags: trunk) | |
Changes
Changes to pages/vtab.in.
︙ | ︙ | |||
1143 1144 1145 1146 1147 1148 1149 | <dt><b>argc > 1 <br> argv[0] = NULL</b> <dd><p> A new row is inserted with column values taken from argv[2] and following. In a rowid virtual table, if argv[1] is an SQL NULL, then a new unique rowid is generated automatically. The argv[1] will be NULL for a [WITHOUT ROWID virtual table], in which case the implementation should | | | 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 | <dt><b>argc > 1 <br> argv[0] = NULL</b> <dd><p> A new row is inserted with column values taken from argv[2] and following. In a rowid virtual table, if argv[1] is an SQL NULL, then a new unique rowid is generated automatically. The argv[1] will be NULL for a [WITHOUT ROWID virtual table], in which case the implementation should take the PRIMARY KEY value from the appropriate column in argv[2] and following. <dt><b>argc > 1 <br> argv[0] ≠ NULL <br> argv[0] = argv[1]</b> <dd><p> The row with rowid or PRIMARY KEY argv[0] is updated with new values in argv[2] and following parameters. <dt><b>argc > 1 <br> argv[0] ≠ NULL <br> argv[0] ≠ argv[1]</b> |
︙ | ︙ |