Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | More precise description of when SQLITE_MASTER can be updated in the FAQ. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | branch-3.29 |
Files: | files | file ages | folders |
SHA3-256: |
5a6c1fea3c12cd538009f42420ef6a9c |
User & Date: | drh 2019-08-15 16:03:02.506 |
Context
2019-09-13
| ||
17:55 | Fix a bug in the documentation generator for PRAGMAs. (check-in: d83262cc8b user: drh tags: branch-3.29) | |
2019-08-15
| ||
16:03 | More precise description of when SQLITE_MASTER can be updated in the FAQ. (check-in: 5a6c1fea3c user: drh tags: branch-3.29) | |
2019-08-12
| ||
11:54 | Trying to improve the documentation on transactions. (check-in: ead5e472f0 user: drh tags: branch-3.29) | |
Changes
Changes to pages/faq.in.
︙ | ︙ | |||
215 216 217 218 219 220 221 | name of the index and <b>tbl_name</b> is the name of the table to which the index belongs. For both tables and indices, the <b>sql</b> field is the text of the original CREATE TABLE or CREATE INDEX statement that created the table or index. For automatically created indices (used to implement the PRIMARY KEY or UNIQUE constraints) the <b>sql</b> field is NULL.</p> | | > > | | | 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 | name of the index and <b>tbl_name</b> is the name of the table to which the index belongs. For both tables and indices, the <b>sql</b> field is the text of the original CREATE TABLE or CREATE INDEX statement that created the table or index. For automatically created indices (used to implement the PRIMARY KEY or UNIQUE constraints) the <b>sql</b> field is NULL.</p> <p>The SQLITE_MASTER table cannot be modified using UPDATE, INSERT, or DELETE (except under [PRAGMA writable_schema|extraordinary conditions]). The SQLITE_MASTER table is automatically updated by commands like CREATE TABLE, CREATE INDEX, DROP TABLE, and DROP INDEX.</p> <p>Temporary tables do not appear in the SQLITE_MASTER table. Temporary tables and their indices and triggers occur in another special table named SQLITE_TEMP_MASTER. SQLITE_TEMP_MASTER works just like SQLITE_MASTER except that it is only visible to the application that created the temporary tables. To get a list of all tables, both permanent and temporary, one can use a command similar to the following: |
︙ | ︙ |