Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix typo in the description of PRAGMA journal_mode. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
4eade435dfa3fb643097b47c1696068c |
User & Date: | mistachkin 2012-10-15 06:10:20.628 |
Context
2012-10-15
| ||
20:39 | Fix the INSERT documentation to describe the fact that the VALUES form of an INSERT can insert multiple rows. (check-in: ee9ff30ec6 user: drh tags: trunk) | |
06:10 | Fix typo in the description of PRAGMA journal_mode. (check-in: 4eade435df user: mistachkin tags: trunk) | |
2012-10-09
| ||
16:18 | Add documentation of recent changes. (check-in: 7417675f15 user: drh tags: trunk) | |
Changes
Changes to pages/pragma.in.
︙ | ︙ | |||
436 437 438 439 440 441 442 | ^The new journal mode is returned. ^If the journal mode could not be changed, the original journal mode is returned.</p> <p>^The DELETE journaling mode is the normal behavior. ^In the DELETE mode, the rollback journal is deleted at the conclusion of each transaction. Indeed, the delete operation is the action that causes the transaction to commit. | | | 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 | ^The new journal mode is returned. ^If the journal mode could not be changed, the original journal mode is returned.</p> <p>^The DELETE journaling mode is the normal behavior. ^In the DELETE mode, the rollback journal is deleted at the conclusion of each transaction. Indeed, the delete operation is the action that causes the transaction to commit. (See the document titled <a href="atomiccommit.html"> Atomic Commit In SQLite</a> for additional detail.)</p> <p>^The TRUNCATE journaling mode commits transactions by truncating the rollback journal to zero-length instead of deleting it. On many systems, truncating a file is much faster than deleting the file since the containing directory does not need to be changed.</p> |
︙ | ︙ |