Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a typo in the AUTOINCREMENT documentation. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | branch-3.9 |
Files: | files | file ages | folders |
SHA1: |
7c05c71d58e63027a3c867eb8d416814 |
User & Date: | drh 2015-12-03 22:03:11.163 |
Context
2015-12-08
| ||
12:03 | Fix typo in the amalagmation document. (check-in: a77392c96c user: drh tags: branch-3.9) | |
2015-12-03
| ||
22:05 | Merge the AUTOINCREMENT typo fix from the 3.9 branch. (check-in: 3dec493cba user: drh tags: trunk) | |
22:03 | Fix a typo in the AUTOINCREMENT documentation. (check-in: 7c05c71d58 user: drh tags: branch-3.9) | |
2015-11-11
| ||
20:52 | Fix a typo in the virtual table documentation. (check-in: 04edad8b2f user: drh tags: trunk) | |
Changes
Changes to pages/autoinc.in.
︙ | ︙ | |||
31 32 33 34 35 36 37 | <p> ^In SQLite, table rows normally have a 64-bit signed integer [ROWID] which is unique among all rows in the same table. ([WITHOUT ROWID] tables are the exception.) </p> <p> | | | 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | <p> ^In SQLite, table rows normally have a 64-bit signed integer [ROWID] which is unique among all rows in the same table. ([WITHOUT ROWID] tables are the exception.) </p> <p> ^(You can access the ROWID of an SQLite table using one of the special column names ROWID, _ROWID_, or OID. Except if you declare an ordinary table column to use one of those special names, then the use of that name will refer to the declared column not to the internal ROWID.)^ </p> <p> |
︙ | ︙ |