Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fixed typo. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
218a28e1d5a195fbddcc879afa1d9945 |
User & Date: | shaneh 2009-05-11 14:24:28.000 |
Context
2009-05-11
| ||
17:41 | Document the goofy behavior of PRIMARY KEY(x DESC) still allowing x to be a rowid if it is of type INTEGER. (check-in: b354d15151 user: drh tags: trunk) | |
14:24 | Fixed typo. (check-in: 218a28e1d5 user: shaneh tags: trunk) | |
14:24 | Initial error list checkin. (check-in: 7276f4a4a3 user: shaneh tags: trunk) | |
Changes
Changes to Makefile.
1 2 3 4 5 6 7 | #!/usr/make # # Makefile for SQLite Documentation # #### The toplevel directory of the documentation source. # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #!/usr/make # # Makefile for SQLite Documentation # #### The toplevel directory of the documentation source. # DOC = . #### The toplevel directory of the program source code. # SRC = ../sqlite #### Which "awk" program provides nawk compatibilty # |
︙ | ︙ |
Changes to pages/faq.in.
︙ | ︙ | |||
470 471 472 473 474 475 476 | per second. Transaction speed is limited by the rotational speed of your disk drive. A transaction normally requires two complete rotations of the disk platter, which on a 7200RPM disk drive limits you to about 60 transactions per second. <p>Transaction speed is limited by disk drive speed because (by default) SQLite actually waits until the data really is safely stored on the disk | | | 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 | per second. Transaction speed is limited by the rotational speed of your disk drive. A transaction normally requires two complete rotations of the disk platter, which on a 7200RPM disk drive limits you to about 60 transactions per second. <p>Transaction speed is limited by disk drive speed because (by default) SQLite actually waits until the data really is safely stored on the disk surface before the transaction is complete. That way, if you suddenly lose power or if your OS crashes, your data is still safe. For details, read about <a href="atomiccommit.html">atomic commit in SQLite.</a>. <p>By default, each INSERT statement is its own transaction. But if you surround multiple INSERT statements with [BEGIN]...[COMMIT] then all the inserts are grouped into a single transaction. The time needed to commit the transaction is amortized over all the enclosed insert statements and |
︙ | ︙ |