Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Make sure bubble diagrams are all shown in the right places. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a67364e06f647c76b1c2804381187a13 |
User & Date: | drh 2014-02-20 16:09:38.761 |
Context
2014-02-21
| ||
13:21 | Update the all-bnf.html file. (check-in: 424fd15707 user: drh tags: trunk) | |
2014-02-20
| ||
16:09 | Make sure bubble diagrams are all shown in the right places. (check-in: a67364e06f user: drh tags: trunk) | |
2014-02-12
| ||
19:36 | Fix a mistake in the date/time function documentation. (check-in: 5cb71ea877 user: drh tags: trunk) | |
Changes
Changes to pages/lang.in.
︙ | ︙ | |||
294 295 296 297 298 299 300 | [SQLITE_LIMIT_ATTACHED], to the number of databases that can be simultaneously attached to a single database connection.</p> <tcl> ############################################################################### Section {BEGIN TRANSACTION} transaction {*BEGIN COMMIT ROLLBACK} | | > > | 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 | [SQLITE_LIMIT_ATTACHED], to the number of databases that can be simultaneously attached to a single database connection.</p> <tcl> ############################################################################### Section {BEGIN TRANSACTION} transaction {*BEGIN COMMIT ROLLBACK} RecursiveBubbleDiagram begin-stmt RecursiveBubbleDiagram commit-stmt RecursiveBubbleDiagram rollback-stmt </tcl> <p> ^No changes can be made to the database except within a transaction. ^Any command that changes the database (basically, any SQL command other than [SELECT]) will automatically start a transaction if one is not already in effect. ^Automatically started transactions |
︙ | ︙ | |||
439 440 441 442 443 444 445 | choose to simplify the interface in future versions of SQLite by causing the errors above to force an unconditional rollback.</p> <tcl> ############################################################################### Section {SAVEPOINT} savepoint {SAVEPOINT RELEASE} | | > > | 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 | choose to simplify the interface in future versions of SQLite by causing the errors above to force an unconditional rollback.</p> <tcl> ############################################################################### Section {SAVEPOINT} savepoint {SAVEPOINT RELEASE} RecursiveBubbleDiagram savepoint-stmt RecursiveBubbleDiagram release-stmt RecursiveBubbleDiagram rollback-stmt </tcl> <p> ^SAVEPOINTs are a method of creating transactions, similar to [BEGIN] and [COMMIT], except that the SAVEPOINT and RELEASE commands are named and may be nested.</p> <p> ^The SAVEPOINT command starts a new transaction with a name. |
︙ | ︙ |