Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Documentation updates. (CVS 720) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
e372a60be8de3332ab6e45d82f21227b |
User & Date: | drh 2002-08-18 19:09:23.000 |
Context
2002-08-18
| ||
20:28 | Fix for ticket #110: return an error if trying to start a transaction within a transaction or when attempting to commit or rollback outside of a transaction. (CVS 721) (check-in: df51cb166b user: drh tags: trunk) | |
19:09 | Documentation updates. (CVS 720) (check-in: e372a60be8 user: drh tags: trunk) | |
2002-08-15
| ||
13:50 | Fix for ticket #135: Remove unused variables from three files. (CVS 719) (check-in: 8cf17f2a24 user: drh tags: trunk) | |
Changes
Changes to main.mk.
︙ | |||
301 302 303 304 305 306 307 308 309 310 311 312 313 314 | 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 | + + + | datatypes.html: $(TOP)/www/datatypes.tcl tclsh $(TOP)/www/datatypes.tcl >datatypes.html quickstart.html: $(TOP)/www/quickstart.tcl tclsh $(TOP)/www/quickstart.tcl >quickstart.html fileformat.html: $(TOP)/www/fileformat.tcl tclsh $(TOP)/www/fileformat.tcl >fileformat.html # Files to be published on the website. # DOC = \ index.html \ sqlite.html \ changes.html \ |
︙ | |||
324 325 326 327 328 329 330 | 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 | - + + | download.html \ speed.html \ faq.html \ formatchng.html \ conflict.html \ omitted.html \ datatypes.html \ |
︙ |
Changes to www/changes.tcl.
︙ | |||
25 26 27 28 29 30 31 32 33 34 35 36 37 38 | 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | + + | puts "<DD><P><UL>$desc</UL></P></DD>" } chng {2002 Aug ?? (2.7.0)} { <li>Make a distinction between numeric and text values when sorting. Text values sort according to memcmp(). Numeric values sort in numeric order.</li> <li>Allow multiple simulataneous readers under windows by simulating the reader/writers locks that are missing from Win95/98/ME.</li> } chng {2002 Aug 12 (2.6.3)} { <li>Add the ability to read both little-endian and big-endian databases. So database created under SunOS or MacOSX can be read and written under Linux or Windows and vice versa.</li> <li>Convert to the new website: http://www.sqlite.org/</li> |
︙ |
Changes to www/datatypes.tcl.
1 2 3 | 1 2 3 4 5 6 7 8 9 10 11 | - + | # # Run this script to generated a datatypes.html output file # |
︙ | |||
113 114 115 116 117 118 119 | 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 | - + - - + + | </p> <p> If data is of type <b>text</b> then the comparison is determined by the standard C data comparison functions <b>memcmp()</b> or <b>strcmp()</b>. The comparison looks at bytes from two inputs one by one and returns the first non-zero difference. |
︙ | |||
210 211 212 213 214 215 216 | 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 | - + | inserted into a numeric column but 0==0.0 which violates the uniqueness constraint. However, the second insert in the right-hand sequence works. In this case, the constants 0 and 0.0 are treated a strings which means that they are distinct.</p> <p>SQLite always converts numbers into double-precision (64-bit) floats for comparison purposes. This means that a long sequence of digits that |
︙ |
Changes to www/faq.tcl.
1 2 3 | 1 2 3 4 5 6 7 8 9 10 11 | - + | # # Run this script to generated a faq.html output file # |
︙ | |||
350 351 352 353 354 355 356 | 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 | - - + + | } { <p>You can declare a table column to be of type "BLOB" but it will still only store null-terminated strings. This is because the only way to insert information into an SQLite database is using an INSERT SQL statement, and you can not include binary data in the middle of the ASCII text string of an INSERT statement.</p> |
︙ |
Added www/fileformat.tcl.