diff options
author | dan miller | 2007-10-21 08:36:32 +0000 |
---|---|---|
committer | dan miller | 2007-10-21 08:36:32 +0000 |
commit | 2f8d7092bc2c9609fa98d6888106b96f38b22828 (patch) | |
tree | da6c37579258cc965b52a75aee6135fe44237698 /libraries/sqlite/unix/sqlite-3.5.1/www/index.tcl | |
parent | * Committing new PolicyManager based on an ACL system. (diff) | |
download | opensim-SC_OLD-2f8d7092bc2c9609fa98d6888106b96f38b22828.zip opensim-SC_OLD-2f8d7092bc2c9609fa98d6888106b96f38b22828.tar.gz opensim-SC_OLD-2f8d7092bc2c9609fa98d6888106b96f38b22828.tar.bz2 opensim-SC_OLD-2f8d7092bc2c9609fa98d6888106b96f38b22828.tar.xz |
libraries moved to opensim-libs, a new repository
Diffstat (limited to 'libraries/sqlite/unix/sqlite-3.5.1/www/index.tcl')
-rw-r--r-- | libraries/sqlite/unix/sqlite-3.5.1/www/index.tcl | 126 |
1 files changed, 0 insertions, 126 deletions
diff --git a/libraries/sqlite/unix/sqlite-3.5.1/www/index.tcl b/libraries/sqlite/unix/sqlite-3.5.1/www/index.tcl deleted file mode 100644 index 2eb5cef..0000000 --- a/libraries/sqlite/unix/sqlite-3.5.1/www/index.tcl +++ /dev/null | |||
@@ -1,126 +0,0 @@ | |||
1 | #!/usr/bin/tclsh | ||
2 | source common.tcl | ||
3 | header {SQLite home page} | ||
4 | puts { | ||
5 | <table width="100%" border="0" cellspacing="5"> | ||
6 | <tr> | ||
7 | <td width="50%" valign="top"> | ||
8 | <h2>About SQLite</h2> | ||
9 | <p> | ||
10 | <table align="right" border="0"><tr><td> | ||
11 | <a href="http://osdir.com/Article6677.phtml"> | ||
12 | <img src="2005osaward.gif"></a> | ||
13 | </td></tr></table> | ||
14 | SQLite is a small | ||
15 | C library that implements a self-contained, embeddable, | ||
16 | zero-configuration | ||
17 | SQL database engine. | ||
18 | Features include: | ||
19 | </p> | ||
20 | |||
21 | <p><ul> | ||
22 | <li>Transactions are atomic, consistent, isolated, and durable (ACID) | ||
23 | even after system crashes and power failures. | ||
24 | <li>Zero-configuration - no setup or administration needed.</li> | ||
25 | <li>Implements most of SQL92. | ||
26 | (<a href="omitted.html">Features not supported</a>)</li> | ||
27 | <li>A complete database is stored in a single disk file.</li> | ||
28 | <li>Database files can be freely shared between machines with | ||
29 | different byte orders.</li> | ||
30 | <li>Supports terabyte-sized databases and gigabyte-sized strings | ||
31 | and blobs. (See <a href="limits.html">limits.html</a>.) | ||
32 | <li>Small code footprint: | ||
33 | <a href="http://www.sqlite.org/cvstrac/wiki?p=SizeOfSqlite"> | ||
34 | less than 250KiB</a> fully configured or less | ||
35 | than 150KiB with optional features omitted.</li> | ||
36 | <li><a href="speed.html">Faster</a> than popular client/server database | ||
37 | engines for most common operations.</li> | ||
38 | <li>Simple, easy to use <a href="capi3.html">API</a>.</li> | ||
39 | <li><a href="tclsqlite.html">TCL bindings</a> included. | ||
40 | Bindings for many other languages | ||
41 | <a href="http://www.sqlite.org/cvstrac/wiki?p=SqliteWrappers"> | ||
42 | available separately.</a></li> | ||
43 | <li>Well-commented source code with over 98% test coverage.</li> | ||
44 | <li>Available as a | ||
45 | <a href="http://www.sqlite.org/cvstrac/wiki?p=TheAmalgamation"> | ||
46 | single ANSI-C source-code file</a> that you can easily drop into | ||
47 | another project. | ||
48 | <li>Self-contained: no external dependencies.</li> | ||
49 | <li>Sources are in the <a href="copyright.html">public domain</a>. | ||
50 | Use for any purpose.</li> | ||
51 | </ul> | ||
52 | </p> | ||
53 | |||
54 | <p> | ||
55 | The SQLite distribution comes with a standalone command-line | ||
56 | access program (<a href="sqlite.html">sqlite</a>) that can | ||
57 | be used to administer an SQLite database and which serves as | ||
58 | an example of how to use the SQLite library. | ||
59 | </p> | ||
60 | |||
61 | </td> | ||
62 | <td width="1" bgcolor="#80a796"></td> | ||
63 | <td valign="top" width="50%"> | ||
64 | <h2>News</h2> | ||
65 | } | ||
66 | |||
67 | proc newsitem {date title text} { | ||
68 | puts "<h3>$date - $title</h3>" | ||
69 | regsub -all "\n( *\n)+" $text "</p>\n\n<p>" txt | ||
70 | puts "<p>$txt</p>" | ||
71 | puts "<hr width=\"50%\">" | ||
72 | } | ||
73 | |||
74 | newsitem {2007-Oct-04} {Version 3.5.1} { | ||
75 | Fix a long-standing bug that might cause database corruption if a | ||
76 | disk-full error occurs in the middle of a transaction and that | ||
77 | transaction is not rolled back. | ||
78 | <a href="http://www.sqlite.org/cvstrac/tktview?tn=2686">Ticket #2686.</a> | ||
79 | |||
80 | The new VFS layer is stable. However, we still reserve the right to | ||
81 | make tweaks to the interface definition of the VFS if necessary. | ||
82 | } | ||
83 | |||
84 | newsitem {2007-Sep-04} {Version 3.5.0 alpha} { | ||
85 | The OS interface layer and the memory allocation subsystems in | ||
86 | SQLite have been reimplemented. The published API is largely unchanged | ||
87 | but the (unpublished) OS interface has been modified extensively. | ||
88 | Applications that implement their own OS interface will require | ||
89 | modification. See | ||
90 | <a href="34to35.html">34to35.html</a> for details.<p> | ||
91 | |||
92 | This is a large change. Approximately 10% of the source code was | ||
93 | modified. We are calling this first release "alpha" in order to give | ||
94 | the user community time to test and evaluate the changes before we | ||
95 | freeze the new design. | ||
96 | } | ||
97 | |||
98 | newsitem {2007-Aug-13} {Version 3.4.2} { | ||
99 | While stress-testing the | ||
100 | <a href="capi3ref.html#sqlite3_soft_heap_limit">soft_heap_limit</a> | ||
101 | feature, a bug that could lead to | ||
102 | <a href="http://www.sqlite.org/cvstrac/wiki?p=DatabaseCorruption">database | ||
103 | corruption</a> was <a href="http://www.sqlite.org/cvstrac/tktview?tn=2565"> | ||
104 | discovered and fixed</a>. | ||
105 | Though the consequences of this bug are severe, the chances of hitting | ||
106 | it in a typical application are remote. Upgrading is recommended | ||
107 | only if you use the | ||
108 | <a href="capi3ref.html#sqlite3_soft_heap_limit">sqlite3_soft_heap_limit</a> | ||
109 | interface. | ||
110 | } | ||
111 | |||
112 | newsitem {2007-Jly-20} {Version 3.4.1} { | ||
113 | This release fixes a bug in <a href="lang_vacuum.html">VACUUM</a> that | ||
114 | can lead to <a href="http://www.sqlite.org/cvstrac/wiki?p=DatabaseCorruption"> | ||
115 | database corruption</a>. The bug was introduced in version | ||
116 | <a href="changes.html#version_3_3_14">3.3.14</a>. | ||
117 | Upgrading is recommended for all users. Also included are a slew of | ||
118 | other more routine | ||
119 | <a href="changes.html#version_3_4_1">enhancements and bug fixes</a>. | ||
120 | } | ||
121 | |||
122 | puts { | ||
123 | <p align="right"><a href="oldnews.html">Old news...</a></p> | ||
124 | </td></tr></table> | ||
125 | } | ||
126 | footer {$Id: index.tcl,v 1.164 2007/10/03 20:32:17 drh Exp $} | ||