Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a typo in the SQLITE_BUSY_SNAPSHOT documentation. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
fe158a6ae2756dccfba102cd496fd3a1 |
User & Date: | drh 2015-05-30 20:51:29.399 |
Context
2015-06-02
| ||
17:24 | Clarify the comparison affinity documentation. Change the name of NONE affinity to BLOB. Update the Makefile so that it works with Ubuntu 14.04LTS. (check-in: 9ba9e670e1 user: drh tags: trunk) | |
2015-05-30
| ||
20:54 | Fix a typo in the SQLITE_BUSY_SNAPSHOT documentation. (check-in: d025188e91 user: drh tags: branch-3.8.10) | |
20:51 | Fix a typo in the SQLITE_BUSY_SNAPSHOT documentation. (check-in: fe158a6ae2 user: drh tags: trunk) | |
2015-05-29
| ||
19:05 | Add an entry on the cell_size_check pragma. Updates to the change log. (check-in: 0bf50a0382 user: drh tags: trunk) | |
Changes
Changes to pages/rescode.in.
︙ | ︙ | |||
550 551 552 553 554 555 556 | <li> Process A starts a read transaction on the database and does one or more SELECT statement. Process A keeps the transaction open. <li> Process B updates the database, changing values previous read by process A. <li> Process A now tries to write to the database. But process A's view of the database content is now obsolete because process B has modified the database file after process A read from it. Hence | | | 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 | <li> Process A starts a read transaction on the database and does one or more SELECT statement. Process A keeps the transaction open. <li> Process B updates the database, changing values previous read by process A. <li> Process A now tries to write to the database. But process A's view of the database content is now obsolete because process B has modified the database file after process A read from it. Hence process A gets an SQLITE_BUSY_SNAPSHOT error. </ol> } RESCODE SQLITE_CANTOPEN_NOTEMPDIR {SQLITE_CANTOPEN | (1<<8)} { The SQLITE_CANTOPEN_NOTEMPDIR error code is no longer used. } RESCODE SQLITE_CANTOPEN_ISDIR {SQLITE_CANTOPEN | (2<<8)} { The SQLITE_CANTOPEN_ISDIR error code is an [ext-v-prim|extended error code] |
︙ | ︙ |