1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

Documentation changes prior to the release of version 3.2.0. (CVS 2416)

FossilOrigin-Name: cc5a2c8e5d2ddb87f3bce6efaf3e62d7fa00d9ca
This commit is contained in:
drh
2005-03-21 19:48:00 +00:00
parent 6b456a2b46
commit 3d07343c84
4 changed files with 28 additions and 13 deletions

View File

@ -1,5 +1,5 @@
C Add\sfunction\sto\srecover\sfrom\sa\smalloc()\sfailure.\s(CVS\s2414)
D 2005-03-21T04:04:02
C Documentation\schanges\sprior\sto\sthe\srelease\sof\sversion\s3.2.0.\s(CVS\s2416)
D 2005-03-21T19:48:00
F Makefile.in 5c00d0037104de2a50ac7647a5f12769795957a3
F Makefile.linux-gcc 06be33b2a9ad4f005a5f42b22c4a19dab3cbb5c7
F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
@ -244,7 +244,7 @@ F www/autoinc.tcl b357f5ba954b046ee35392ce0f884a2fcfcdea06
F www/c_interface.tcl b51b08591554c16a0c3ef718364a508ac25abc7e
F www/capi3.tcl 7a7cc225fe02eb7ab861a6019b08baa0014409e1
F www/capi3ref.tcl 59c7da9ef1f24dcb10b247cd3b7452cf76ab36f0
F www/changes.tcl 2a01ed8f51729365d190e5adbae7aee61499a6cc
F www/changes.tcl 78955040fab36bb6c6190c89b099a4bf18af24dd
F www/common.tcl de758130d54d95d151ea0d17a2ae5b92e1bb01de
F www/compile.tcl 276546d7eb445add5a867193bbd80f6919a6b084
F www/conflict.tcl cdd0f4b59b0ba6d61f67e6a38f3ae45853bacb30
@ -260,7 +260,7 @@ F www/dynload.tcl 02eb8273aa78cfa9070dd4501dca937fb22b466c
F www/faq.tcl 1e348dec52dc0f21f4216fd6918c69c56daa4cfd
F www/fileformat.tcl 900c95b9633abc3dcfc384d9ddd8eb4876793059
F www/formatchng.tcl ec974d74a87f7ae69d0626848bfcf716865c3291
F www/index.tcl d205e4f360829c2f2805b7d4c11f8b293e1f6bac
F www/index.tcl 8ed52861b9841d5d2d6948f884d9369be4d39673
F www/lang.tcl b121bfd638fd3fd6db7450d82cf8c8145f4753df
F www/lockingv3.tcl f59b19d6c8920a931f096699d6faaf61c05db55f
F www/mingw.tcl d96b451568c5d28545fefe0c80bee3431c73f69c
@ -278,7 +278,7 @@ F www/tclsqlite.tcl e73f8f8e5f20e8277619433f7970060ab01088fc
F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
F www/version3.tcl 092a01f5ef430d2c4acc0ae558d74c4bb89638a0
F www/whentouse.tcl 528299b8316726dbcc5548e9aa0648c8b1bd055b
P e7844a01c248e8d9204ea9214bec84c81dc07f32
R f4236514887458fc97a3ba49da042ffa
U danielk1977
Z 3885f9adee945c24942080cd5fadfb47
P 1f9d10d7965c95d1e35f64cf4c3f128adabd41f2
R a23f8956447a21f1677f44f20c9ed426
U drh
Z c644c1654c011861cbefd434c603ea9f

View File

@ -1 +1 @@
1f9d10d7965c95d1e35f64cf4c3f128adabd41f2
cc5a2c8e5d2ddb87f3bce6efaf3e62d7fa00d9ca

View File

@ -21,8 +21,11 @@ proc chng {date desc} {
puts "<DD><P><UL>$desc</UL></P></DD>"
}
chng {2005 March 19 (3.2.0)} {
chng {2005 March 21 (3.2.0)} {
<li>Added support for ALTER TABLE ADD COLUMN.</li>
<li>Added support for the "T" separator in ISO-8601 date/time strings.</li>
<li>Improved support for Cygwin.</li>
<li>Numerous bug fixes and documentation updates.</li>
}
chng {2005 March 16 (3.1.6)} {

View File

@ -61,8 +61,20 @@ proc newsitem {date title text} {
puts "<hr width=\"50%\">"
}
newsitem {2005-Mar-19} {Version 3.2.0} {
Version 3.2.0 adds support for ALTER TABLE ADD COLUMN.
newsitem {2005-Mar-21} {Version 3.2.0} {
The primary purpose for version 3.2.0 is to add support for
<a href="lang_altertable.html">ALTER TABLE ADD COLUMN</a>.
The new ADD COLUMN capability is made
possible by AOL developers supporting and embracing great
open-source software. Thanks, AOL!
Version 3.2.0 also fixes an obscure but serious bug that was discovered
just prior to release. If you have a multi-statement transaction and
within that transaction an UPDATE or INSERT statement fails due to a
constraint, then you try to rollback the whole transaction, the rollback
might not work correctly. See
<a href="http://www.sqlite.org/cvstrac/tktview?tn=1171">Ticket #1171</a>
for details. Upgrading is recommended for all users.
}
newsitem {2005-Mar-16} {Version 3.1.6} {
@ -95,4 +107,4 @@ puts {
<p align="right"><a href="oldnews.html">Old news...</a></p>
</td></tr></table>
}
footer {$Id: index.tcl,v 1.112 2005/03/19 14:45:50 drh Exp $}
footer {$Id: index.tcl,v 1.113 2005/03/21 19:48:00 drh Exp $}