Update the news column on the homepage. (CVS 3275)

FossilOrigin-Name: 24a94bb07589c04305eceec1dc9a1a9a2c39e2c5
This commit is contained in:
drh 2006-06-20 00:22:37 +00:00
parent 74cdba4fa8
commit 2f47c86adf
4 changed files with 36 additions and 11 deletions

View File

@ -1,5 +1,5 @@
C Avoid\sreturning\sMISUSE\swhen\ssqlite\sis\scalled\srecursively\sby\san\sxBestIndex\scallback.\s(CVS\s3274)
D 2006-06-19T12:02:59
C Update\sthe\snews\scolumn\son\sthe\shomepage.\s(CVS\s3275)
D 2006-06-20T00:22:38
F Makefile.in f839b470345d3cb4b0644068474623fe2464b5d3
F Makefile.linux-gcc 2d8574d1ba75f129aba2019f0b959db380a90935
F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
@ -347,7 +347,7 @@ F www/fileformat.tcl 900c95b9633abc3dcfc384d9ddd8eb4876793059
F www/formatchng.tcl 4972e680f9331ea46f47001e349baba807f5b60a
F www/fullscanb.gif f7c94cb227f060511f8909e10f570157263e9a25
F www/index-ex1-x-b.gif f9b1d85c3fa2435cf38b15970c7e3aa1edae23a3
F www/index.tcl 1d4a2d4011bbc85e060b36094c071e3c47cd786b
F www/index.tcl 38fac8344e6f514725a57cf32946463581459464
F www/indirect1b1.gif adfca361d2df59e34f9c5cac52a670c2bfc303a1
F www/lang.tcl 432ee67f7528dd6e6313f149d5df33cad2dfb359
F www/lockingv3.tcl f59b19d6c8920a931f096699d6faaf61c05db55f
@ -359,7 +359,7 @@ F www/opcode.tcl 5bd68059416b223515a680d410a9f7cb6736485f
F www/optimizer.tcl d6812a10269bd0d7c488987aac0ad5036cace9dc
F www/optimizing.tcl f0b2538988d1bbad16cbfe63ec6e8f48c9eb04e5
F www/optoverview.tcl 815df406a38c9f69b27d37e8f7ede004c6d9f19e
F www/pragma.tcl 0e6316315d1e418bfc8c31b949a0243aa0f2e65d
F www/pragma.tcl c3d103838ae1c66729f8286e276735618af2a88a
F www/quickstart.tcl 8708a4ca83fbf55c66af1782992626f20c3df095
F www/shared.gif 265bae80c5b311c5a86e47662821076ffaf5c6ea
F www/sharedcache.tcl 3ebec81110e606af6fd65a3c4c19562cb173b29c
@ -371,7 +371,7 @@ F www/tclsqlite.tcl bb0d1357328a42b1993d78573e587c6dcbc964b9
F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b
F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513
P 9470e27962d2fe9c0d1921d9aab7d8f0047ac1fd
R e911807803f92d410300bd3d3bd48573
U danielk1977
Z 123bfb4cc39e6acb4da9c11956198a0d
P 4339e1bf664c4287aabe0993a9c5a2b783019cb3
R f78c14eb0ac084fc4dad89e26b5927cd
U drh
Z a24c85fba3541a1495ae9b4faac1f418

View File

@ -1 +1 @@
4339e1bf664c4287aabe0993a9c5a2b783019cb3
24a94bb07589c04305eceec1dc9a1a9a2c39e2c5

View File

@ -66,6 +66,16 @@ proc newsitem {date title text} {
puts "<hr width=\"50%\">"
}
newsitem {2006-Jun-19} {New Book About SQLite} {
<a href="http://www.apress.com/book/bookDisplay.html?bID=10130">
<i>The Definitive Guide to SQLite</i></a>, a new book by
<a href="http://www.mikesclutter.com">Mike Owens</a>.
is now available from <a href="http://www.apress.com">Apress</a>.
The books covers the latest SQLite internals as well as
the native C interface and bindings for PHP, Python,
Pearl, Ruby, Tcl, and Java. Recommended.
}
newsitem {2006-Jun-6} {Version 3.3.6} {
Changes include improved tolerance for windows virus scanners
and faster :memory: databases. There are also fixes for several
@ -137,4 +147,4 @@ puts {
<p align="right"><a href="oldnews.html">Old news...</a></p>
</td></tr></table>
}
footer {$Id: index.tcl,v 1.138 2006/06/06 12:38:51 drh Exp $}
footer {$Id: index.tcl,v 1.139 2006/06/20 00:22:38 drh Exp $}

View File

@ -1,7 +1,7 @@
#
# Run this Tcl script to generate the pragma.html file.
#
set rcsid {$Id: pragma.tcl,v 1.17 2006/02/11 01:25:52 drh Exp $}
set rcsid {$Id: pragma.tcl,v 1.18 2006/06/20 00:22:38 drh Exp $}
source common.tcl
header {Pragma statements supported by SQLite}
@ -221,6 +221,21 @@ puts {
</p>
</li>
<a name="pragma_legacy_file_format"></a>
<li><p><b>PRAGMA legacy_file_format;
<br>PRAGMA legacy_file_format = <i>ON | OFF</i></b></p>
<p>This pragma sets or queries the value of the legacy_file_format
flag. When this flag is on, new SQLite databases are created in
a file format that is readable and writable by all versions of
SQLite going back to 3.0.0. When the flag is off, new databases
are created using the latest file format which might to be
readable or writable by older versions of SQLite.</p>
<p>This flag only effects newly created databases. It has no
effect on databases that already exists.</p>
</li>
<a name="pragma_page_size"></a>
<li><p><b>PRAGMA page_size;
<br>PRAGMA page_size = </b><i>bytes</i><b>;</b></p>