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 | branch-3.8.10 |
Files: | files | file ages | folders |
SHA1: |
d025188e91475d0bdbb9d683352f804e |
User & Date: | drh 2015-05-30 20:54:36.139 |
Context
2015-06-26
| ||
19:17 | Make search.tcl more robust in the face of malformed MATCH queries. (check-in: f2337fb9a2 user: drh tags: branch-3.8.10) | |
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-26
| ||
12:26 | Cherrypick several recent minor changes from trunk. (check-in: 0f4cfe6cd0 user: drh tags: branch-3.8.10) | |
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] |
︙ | ︙ |