Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Bump the version number to 2.8.1. Update documentation prior to release. (CVS 978) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
0874814ab01ffc0acffec8e6cec34eaa |
User & Date: | drh 2003-05-17 01:39:40.000 |
Context
2003-05-17
| ||
02:27 | Fix the fix for newlines in echo commands. Tickets #311, #282, #256. (CVS 979) (check-in: baea7aca10 user: drh tags: trunk) | |
01:39 | Bump the version number to 2.8.1. Update documentation prior to release. (CVS 978) (check-in: 0874814ab0 user: drh tags: trunk) | |
00:24 | Escape backslashes in echo commands in the makefiles. Tickets #311, #282, #256. (CVS 977) (check-in: d614861b8a user: drh tags: trunk) | |
Changes
Changes to VERSION.
|
| | | 1 | 2.8.1 |
Changes to www/changes.tcl.
︙ | ︙ | |||
8 9 10 11 12 13 14 | <body bgcolor="white"> <h1 align="center">Recent Changes To SQLite</h1> <p> This file provides a high-level summary of changes to SQLite. For more detail, refer the the checkin logs generated by CVS at | | | > > > > > > > > > > > > > > > | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | <body bgcolor="white"> <h1 align="center">Recent Changes To SQLite</h1> <p> This file provides a high-level summary of changes to SQLite. For more detail, refer the the checkin logs generated by CVS at <a href="http://cvs.hwaci.com/sqlite/timeline"> http://cvs.hwaci.com/sqlite/timeline</a>. </p> <DL> } proc chng {date desc} { puts "<DT><B>$date</B></DT>" puts "<DD><P><UL>$desc</UL></P></DD>" } chng {2003 May 16 (2.8.1)} { <li>Reactivated the VACUUM command that reclaims unused disk space in a database file.</li> <li>Added the ATTACH and DETACH commands to allow interacting with multiple database files at the same time.</li> <li>Added support for TEMP triggers and indices.</li> <li>Added support for in-memory databases.</li> <li>Removed the experimental sqlite_open_aux_file(). Its function is subsumed in the new ATTACH command.</li> <li>The precedence order for ON CONFLICT clauses was changed so that ON CONFLICT clauses on BEGIN statements have a higher precedence than ON CONFLICT clauses on constraints. <li>Many, many bug fixes and compatibility enhancements.</li> } chng {2003 Feb 16 (2.8.0)} { <li>Modified the journal file format to make it more resistant to corruption that can occur after an OS crash or power failure.</li> <li>Added a new C/C++ API that does not use callback for returning data.</li> } |
︙ | ︙ |
Changes to www/index.tcl.
1 2 3 | # # Run this TCL script to generate HTML for the index.html file. # | | | 1 2 3 4 5 6 7 8 9 10 11 | # # Run this TCL script to generate HTML for the index.html file. # set rcsid {$Id: index.tcl,v 1.74 2003/05/17 01:39:40 drh Exp $} puts {<html> <head><title>SQLite: An Embeddable SQL Database Engine</title></head> <body bgcolor=white> <h1 align=center>SQLite<br>An Embeddable SQL Database Engine</h1> <p align=center>} puts "This page was last modified on [lrange $rcsid 3 4] UTC<br>" |
︙ | ︙ | |||
32 33 34 35 36 37 38 | puts { <table align="right" hspace="10" cellpadding=0 cellspacing=0 broder=0> <tr><td align="right" bgcolor="#cacae4"> <table border="2" width="100%" cellspacing=0 cellpadding=5><tr><td align="left"> Quick Links: <ul> <li><a href="download.html">Download</a></li> | | | | 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | puts { <table align="right" hspace="10" cellpadding=0 cellspacing=0 broder=0> <tr><td align="right" bgcolor="#cacae4"> <table border="2" width="100%" cellspacing=0 cellpadding=5><tr><td align="left"> Quick Links: <ul> <li><a href="download.html">Download</a></li> <li><a href="http://cvs.hwaci.com/sqlite/timeline">Change Log</a></li> <li><a href="http://cvs.hwaci.com/sqlite/tktnew">Report a bug</a></li> <li><a href="quickstart.html">Quick start</a></li> </ul> </td></tr></table> </td></tr> </table> } |
︙ | ︙ | |||
73 74 75 76 77 78 79 | </p> } puts {<h2>Current Status</h2> <p>A <a href="changes.html">Change Summary</a> is available on this website. You can also access a detailed | | | | | | 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | </p> } puts {<h2>Current Status</h2> <p>A <a href="changes.html">Change Summary</a> is available on this website. You can also access a detailed <a href="http://cvs.hwaci.com/sqlite/timeline">change history</a>, <a href="http://cvs.hwaci.com/sqlite/rptview?rn=2">view open bugs</a>, or <a href="http://cvs.hwaci.com/sqlite/tktnew">report new bugs</a> at the <a href="http://cvs.hwaci.com/sqlite/">CVS server</a>.</p> <p>Complete source code and precompiled binaries for the latest release are <a href="download.html">available for download</a> on this site. You can also obtain the latest changes by anonymous CVS access: <blockquote><pre> cvs -d :pserver:anonymous@cvs.hwaci.com:/home/cvs/sqlite login cvs -d :pserver:anonymous@cvs.hwaci.com:/home/cvs/sqlite checkout sqlite |
︙ | ︙ | |||
107 108 109 110 111 112 113 | for SQLite change, it means that the underlying file format has changed. Usually these changes are backwards compatible. See <a href="formatchng.html">formatchng.html</a> for additional information. </p> } | < < < < < < < < < < < < < < < < | 107 108 109 110 111 112 113 114 115 116 117 118 119 120 | for SQLite change, it means that the underlying file format has changed. Usually these changes are backwards compatible. See <a href="formatchng.html">formatchng.html</a> for additional information. </p> } puts {<h2>Documentation</h2> <p>The following documentation is currently available:</p> <p><ul> <li>A <a href="quickstart.html">Quick Start</a> guide to using SQLite in 5 minutes or less.</li> |
︙ | ︙ | |||
147 148 149 150 151 152 153 154 155 156 157 | how the library is put together.</li> <li>A description of the <a href="opcode.html">virtual machine</a> that SQLite uses to access the database.</li> <li>A description of the <a href="fileformat.html">database file format</a> used by SQLite. <li>A <a href="speed.html">speed comparison</a> between SQLite, PostgreSQL, and MySQL.</li> </ul> </p> <p>The SQLite source code is 30% comment. These comments are | > > > | | 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 | how the library is put together.</li> <li>A description of the <a href="opcode.html">virtual machine</a> that SQLite uses to access the database.</li> <li>A description of the <a href="fileformat.html">database file format</a> used by SQLite. <li>A <a href="speed.html">speed comparison</a> between SQLite, PostgreSQL, and MySQL.</li> <li>User-written documentation is available on the <a href="http://cvs.hwaci.com/sqlite/wiki">SQLite Wiki</a>. Please contribute if you can.</li> </ul> </p> <p>The SQLite source code is 30% comment. These comments are another important source of information. </p> } puts { <table align="right"> <tr><td align="center"> <a href="http://www.yahoogroups.com/subscribe/sqlite"> |
︙ | ︙ | |||
221 222 223 224 225 226 227 | <p> For information bindings of SQLite to other programming languages (Perl, Python, Ruby, PHP, etc.) and for a list of programs currently using SQLite, visit the Wiki documentation at: </p> <blockquote> | | | | 208 209 210 211 212 213 214 215 216 217 218 219 220 221 | <p> For information bindings of SQLite to other programming languages (Perl, Python, Ruby, PHP, etc.) and for a list of programs currently using SQLite, visit the Wiki documentation at: </p> <blockquote> <a href="http://cvs.hwaci.com/sqlite/wiki"> http://cvs.hwaci.com/sqlite/wiki</a> </blockquote> } puts { </body></html>} |
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 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | # # Run this Tcl script to generate the sqlite.html file. # set rcsid {$Id: lang.tcl,v 1.58 2003/05/17 01:39:40 drh Exp $} puts {<html> <head> <title>Query Language Understood By SQLite</title> </head> <body bgcolor=white> <h1 align=center> SQL As Understood By SQLite </h1>} puts "<p align=center> (This page was last modified on [lrange $rcsid 3 4] UTC) </p>" puts { <p>The SQLite library understands most of the standard SQL language. But it does <a href="omitted.html">omit some features</a> while at the same time adding a few features of its own. This document attempts to describe percisely what parts of the SQL language SQLite does and does not support. A list of <a href="#keywords">keywords</a> is given at the end.</p> <p>In all of the syntax diagrams that follow, literal text is shown in bold blue. Non-terminal symbols are shown in italic red. Operators that are part of the syntactic markup itself are shown in black roman.</p> <p>This document is just an overview of the SQL syntax implemented |
︙ | ︙ | |||
1145 1146 1147 1148 1149 1150 1151 | that are causing the constraint violation are removed prior to inserting or updating the current row. Thus the insert or update always occurs. The command continues executing normally. No error is returned. If a NOT NULL constraint violation occurs, the NULL value is replaced by the default value for that column. If the column has no default value, then the ABORT algorithm is used.</p> | | | > | < | | | | 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 | that are causing the constraint violation are removed prior to inserting or updating the current row. Thus the insert or update always occurs. The command continues executing normally. No error is returned. If a NOT NULL constraint violation occurs, the NULL value is replaced by the default value for that column. If the column has no default value, then the ABORT algorithm is used.</p> <p>When this conflict resolution strategy deletes rows in order to statisfy a constraint, it does not invoke delete triggers on those rows. But that may change in a future release.</p> </dd> </dl> <p> The conflict resolution algorithm can be specified in three places, in order from lowest to highest precedence: </p> <ol> <li><p> On individual constraints within a CREATE TABLE or CREATE INDEX statement. </p></li> <li><p> On a BEGIN TRANSACTION command. </p></li> <li><p> In the OR clause of a COPY, INSERT, or UPDATE command. </p></li> </ol> <p>The algorithm specified in the OR clause of a COPY, INSERT, or UPDATE overrides any algorithm specified on the BEGIN TRANSACTION command and the algorithm specified on the BEGIN TRANSACTION command overrides the algorithm specified in the a CREATE TABLE or CREATE INDEX. If no algorithm is specified anywhere, the ABORT algorithm is used.</p> } # <p>For additional information, see # <a href="conflict.html">conflict.html</a>.</p> |
︙ | ︙ |