Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | 1.0.44.0 |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | sourceforge |
Files: | files | file ages | folders |
SHA1: |
7b0eeb381651a99fc30c20d5fcf4009f |
User & Date: | rmsimpson 2007-07-21 08:46:09.000 |
Context
2007-07-21
| ||
08:46 | 1.0.44.0 check-in: d189b55f98 user: rmsimpson tags: sourceforge | |
08:46 | 1.0.44.0 check-in: 7b0eeb3816 user: rmsimpson tags: sourceforge | |
2007-06-19
| ||
22:42 | Code merge with SQLite 3.4.0 check-in: d9903df39e user: rmsimpson tags: sourceforge | |
Changes
Changes to Doc/Extra/dbfactorysupport.html.
︙ | |||
93 94 95 96 97 98 99 | 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | - + | <configuration> <system.data> <DbProviderFactories> <remove invariant="System.Data.SQLite"/> <add name="SQLite Data Provider" invariant="System.Data.SQLite" description=".Net Framework Data Provider for SQLite" type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite, |
︙ |
Changes to Doc/Extra/lang_analyze.html.
︙ | |||
96 97 98 99 100 101 102 | 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 | - + | with that one table are analyzed.</p> <p> The initial implementation stores all statistics in a single table named <b>sqlite_stat1</b>. Future enhancements may create additional tables with the same name pattern except with the "1" changed to a different digit. The <b>sqlite_stat1</b> table cannot be <a href="lang_droptable.html">DROP</a>ped, but all the content can be <a href="lang_delete.html"> DELETE</a>d which has the same effect.</p> <p> |
︙ |
Changes to Doc/Extra/lang_explain.html.
︙ | |||
76 77 78 79 80 81 82 | 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 | - + | of actually executing the command, the SQLite library will report back the sequence of virtual machine instructions it would have used to execute the command had the EXPLAIN keyword not been present. For additional information about virtual machine instructions see the <a href="http://www.sqlite.org/arch.html">architecture description</a> or the documentation on <a href="http://www.sqlite.org/opcode.html">available opcodes</a> for the virtual machine.</p> <p> |
︙ |
Changes to Doc/Extra/lang_select.html.
︙ | |||
238 239 240 241 242 243 244 | 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 | - + | UNION ALL operators combine the results of the SELECTs to the right and left into a single big table. The difference is that in UNION all result rows are distinct where in UNION ALL there may be duplicates. The INTERSECT operator takes the intersection of the results of the left and right SELECTs. EXCEPT takes the result of left SELECT after removing the results of the right SELECT. When three or more SELECTs are connected into a compound, they group from left to right.</p> <p> |
︙ |
Added Doc/Extra/lang_types.html.