Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update SQLite core library to the 3.8.11 release. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
9514fcda89f579119b45eb0bdfe7137f |
User & Date: | mistachkin 2015-07-27 15:41:33 |
Context
2015-07-29
| ||
02:57 | Enhancements to the stress test. check-in: d8612b51e0 user: mistachkin tags: trunk | |
2015-07-27
| ||
15:41 | Update SQLite core library to the 3.8.11 release. check-in: 9514fcda89 user: mistachkin tags: trunk | |
2015-07-25
| ||
18:20 | Add 'Recursive Triggers' connection string property to enable or disable the recursive trigger capability. Pursuant to [3a82ee635b]. check-in: 8a3839a32f user: mistachkin tags: trunk | |
Changes
Changes to Doc/Extra/Provider/version.html.
41 41 </table> 42 42 </div> 43 43 <div id="mainSection"> 44 44 <div id="mainBody"> 45 45 <h1 class="heading">Version History</h1> 46 46 <p><b>1.0.98.0 - August XX, 2015 <font color="red">(release scheduled)</font></b></p> 47 47 <ul> 48 - <li>Updated to <a href="https://www.sqlite.org/draft/releaselog/3_8_11.html">SQLite 3.8.11</a>.</li> 48 + <li>Updated to <a href="https://www.sqlite.org/releaselog/3_8_11.html">SQLite 3.8.11</a>.</li> 49 49 <li>Add full support for Visual Studio 2015 and the .NET Framework 4.6.</li> 50 50 <li>Implement the Substring method for LINQ using the "substr" core SQL function. <b>** Potentially Incompatible Change **</b></li> 51 51 <li>Honor the pre-existing flags for connections during the Open method. Fix for <a href="https://system.data.sqlite.org/index.html/info/964063da16">[964063da16]</a>. <b>** Potentially Incompatible Change **</b></li> 52 52 <li>Remove errant semi-colons from the SQL used by LINQ to INSERT and then SELECT rows with composite primary keys. Fix for <a href="https://system.data.sqlite.org/index.html/info/9d353b0bd8">[9d353b0bd8]</a>.</li> 53 53 <li>Change the base type for the SQLiteConnectionFlags enumeration to long integer. <b>** Potentially Incompatible Change **</b></li> 54 54 <li>Add extended return codes to the SQLiteErrorCode enumeration. Pursuant to <a href="https://system.data.sqlite.org/index.html/info/71bedaca19">[71bedaca19]</a>. <b>** Potentially Incompatible Change **</b></li> 55 55 <li>Improve exception handling in all native callbacks implemented in the SQLiteConnection class.</li>
Changes to SQLite.Interop/src/core/sqlite3.c.
323 323 ** 324 324 ** See also: [sqlite3_libversion()], 325 325 ** [sqlite3_libversion_number()], [sqlite3_sourceid()], 326 326 ** [sqlite_version()] and [sqlite_source_id()]. 327 327 */ 328 328 #define SQLITE_VERSION "3.8.11" 329 329 #define SQLITE_VERSION_NUMBER 3008011 330 -#define SQLITE_SOURCE_ID "2015-07-24 23:28:05 db129149812cb4eadb4cd79ad293d14962d2638d" 330 +#define SQLITE_SOURCE_ID "2015-07-27 13:49:41 b8e92227a469de677a66da62e4361f099c0b79d0" 331 331 332 332 /* 333 333 ** CAPI3REF: Run-Time Library Version Numbers 334 334 ** KEYWORDS: sqlite3_version, sqlite3_sourceid 335 335 ** 336 336 ** These interfaces provide the same information as the [SQLITE_VERSION], 337 337 ** [SQLITE_VERSION_NUMBER], and [SQLITE_SOURCE_ID] C preprocessor macros ................................................................................ 138683 138683 ** possible if the bOptOk argument is true, the FTS doclists will be 138684 138684 ** scanned in forward order, and the phrase consists of 138685 138685 ** MAX_INCR_PHRASE_TOKENS or fewer tokens, none of which are are "^first" 138686 138686 ** tokens or prefix tokens that cannot use a prefix-index. */ 138687 138687 int bHaveIncr = 0; 138688 138688 int bIncrOk = (bOptOk 138689 138689 && pCsr->bDesc==pTab->bDescIdx 138690 - && p->nToken<=MAX_INCR_PHRASE_TOKENS && p->nToken>0 138691 138690 && p->nToken<=MAX_INCR_PHRASE_TOKENS && p->nToken>0 138692 138691 #ifdef SQLITE_TEST 138693 138692 && pTab->bNoIncrDoclist==0 138694 138693 #endif 138695 138694 ); 138696 138695 for(i=0; bIncrOk==1 && i<p->nToken; i++){ 138697 138696 Fts3PhraseToken *pToken = &p->aToken[i];
Changes to SQLite.Interop/src/core/sqlite3.h.
109 109 ** 110 110 ** See also: [sqlite3_libversion()], 111 111 ** [sqlite3_libversion_number()], [sqlite3_sourceid()], 112 112 ** [sqlite_version()] and [sqlite_source_id()]. 113 113 */ 114 114 #define SQLITE_VERSION "3.8.11" 115 115 #define SQLITE_VERSION_NUMBER 3008011 116 -#define SQLITE_SOURCE_ID "2015-07-24 23:28:05 db129149812cb4eadb4cd79ad293d14962d2638d" 116 +#define SQLITE_SOURCE_ID "2015-07-27 13:49:41 b8e92227a469de677a66da62e4361f099c0b79d0" 117 117 118 118 /* 119 119 ** CAPI3REF: Run-Time Library Version Numbers 120 120 ** KEYWORDS: sqlite3_version, sqlite3_sourceid 121 121 ** 122 122 ** These interfaces provide the same information as the [SQLITE_VERSION], 123 123 ** [SQLITE_VERSION_NUMBER], and [SQLITE_SOURCE_ID] C preprocessor macros
Changes to readme.htm.
2 2 <html> 3 3 <head> 4 4 <title></title> 5 5 </head> 6 6 <body> 7 7 ADO.NET SQLite Data Provider<br /> 8 8 Version 1.0.98.0 - August XX, 2015 <font color="red">(release scheduled)</font><br /> 9 -Using <a href="https://www.sqlite.org/draft/releaselog/3_8_11.html">SQLite 3.8.11</a><br /> 9 +Using <a href="https://www.sqlite.org/releaselog/3_8_11.html">SQLite 3.8.11</a><br /> 10 10 Originally written by Robert Simpson<br /> 11 11 Released to the public domain, use at your own risk!<br /> 12 12 Official provider website: <a href="https://system.data.sqlite.org/">https://system.data.sqlite.org/</a><br /> 13 13 Legacy versions: <a href="http://sqlite.phxsoftware.com/">http://sqlite.phxsoftware.com/</a><br /> 14 14 <br /> 15 15 The current development version can be downloaded from <a href="https://system.data.sqlite.org/index.html/timeline?y=ci"> 16 16 https://system.data.sqlite.org/index.html/timeline?y=ci</a> ................................................................................ 208 208 209 209 <h2><b>Version History</b></h2> 210 210 211 211 <p> 212 212 <b>1.0.98.0 - August XX, 2015 <font color="red">(release scheduled)</font></b> 213 213 </p> 214 214 <ul> 215 - <li>Updated to <a href="https://www.sqlite.org/draft/releaselog/3_8_11.html">SQLite 3.8.11</a>.</li> 215 + <li>Updated to <a href="https://www.sqlite.org/releaselog/3_8_11.html">SQLite 3.8.11</a>.</li> 216 216 <li>Add full support for Visual Studio 2015 and the .NET Framework 4.6.</li> 217 217 <li>Implement the Substring method for LINQ using the "substr" core SQL function. <b>** Potentially Incompatible Change **</b></li> 218 218 <li>Honor the pre-existing flags for connections during the Open method. Fix for [964063da16]. <b>** Potentially Incompatible Change **</b></li> 219 219 <li>Remove errant semi-colons from the SQL used by LINQ to INSERT and then SELECT rows with composite primary keys. Fix for [9d353b0bd8].</li> 220 220 <li>Change the base type for the SQLiteConnectionFlags enumeration to long integer. <b>** Potentially Incompatible Change **</b></li> 221 221 <li>Add extended return codes to the SQLiteErrorCode enumeration. Pursuant to [71bedaca19]. <b>** Potentially Incompatible Change **</b></li> 222 222 <li>Improve exception handling in all native callbacks implemented in the SQLiteConnection class.</li>
Changes to www/news.wiki.
2 2 3 3 <b>Version History</b> 4 4 5 5 <p> 6 6 <b>1.0.98.0 - August XX, 2015 <font color="red">(release scheduled)</font></b> 7 7 </p> 8 8 <ul> 9 - <li>Updated to [https://www.sqlite.org/draft/releaselog/3_8_11.html|SQLite 3.8.11].</li> 9 + <li>Updated to [https://www.sqlite.org/releaselog/3_8_11.html|SQLite 3.8.11].</li> 10 10 <li>Add full support for Visual Studio 2015 and the .NET Framework 4.6.</li> 11 11 <li>Implement the Substring method for LINQ using the "substr" core SQL function. <b>** Potentially Incompatible Change **</b></li> 12 12 <li>Honor the pre-existing flags for connections during the Open method. Fix for [964063da16]. <b>** Potentially Incompatible Change **</b></li> 13 13 <li>Remove errant semi-colons from the SQL used by LINQ to INSERT and then SELECT rows with composite primary keys. Fix for [9d353b0bd8].</li> 14 14 <li>Change the base type for the SQLiteConnectionFlags enumeration to long integer. <b>** Potentially Incompatible Change **</b></li> 15 15 <li>Add extended return codes to the SQLiteErrorCode enumeration. Pursuant to [71bedaca19]. <b>** Potentially Incompatible Change **</b></li> 16 16 <li>Improve exception handling in all native callbacks implemented in the SQLiteConnection class.</li>