Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix for bug #70: Correct a typo in the documentation. (CVS 616) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
3387d5b6d62fbafea69fac7bb8256c37 |
User & Date: | drh 2002-06-12 22:33:54.000 |
Context
2002-06-14
| ||
20:54 | Fix for bug #72: Make sure the file descriptors are properly closed if sqliteInit() fails for any reason. (CVS 617) (check-in: e67ac0fec5 user: drh tags: trunk) | |
2002-06-12
| ||
22:33 | Fix for bug #70: Correct a typo in the documentation. (CVS 616) (check-in: 3387d5b6d6 user: drh tags: trunk) | |
2002-06-11
| ||
22:33 | Documentation that should have been checked in along with checkin (614) (CVS 615) (check-in: 10da136125 user: danielk1977 tags: trunk) | |
Changes
Changes to www/lang.tcl.
1 2 3 | # # Run this Tcl script to generate the sqlite.html file. # | | | 1 2 3 4 5 6 7 8 9 10 11 | # # Run this Tcl script to generate the sqlite.html file. # set rcsid {$Id: lang.tcl,v 1.40 2002/06/12 22:33:54 drh Exp $} puts {<html> <head> <title>Query Language Understood By SQLite</title> </head> <body bgcolor=white> <h1 align=center> |
︙ | ︙ | |||
567 568 569 570 571 572 573 | Section {DROP VIEW} dropview Syntax {sql-command} { DROP VIEW <view-name> } puts { | | | 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 | Section {DROP VIEW} dropview Syntax {sql-command} { DROP VIEW <view-name> } puts { <p>The DROP VIEW statement consists of the keywords "DROP VIEW" followed by the name of the view. The view named is removed from the database. But no actual data is modified.</p>} Section EXPLAIN explain Syntax {sql-statement} { EXPLAIN <sql-statement> |
︙ | ︙ |