Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Mark a 'Potentially Incompatible Change' in the 1.0.99.0 release, per ticket [dbd65441a5]. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
b45629dfee1f68b03f172bb6641b487f |
User & Date: | mistachkin 2016-01-12 23:19:53.768 |
Context
2016-01-13
| ||
00:06 | For column types that resolve to boolean, recognize case-insensitive prefixes of 'True' and 'False'. Fix for [dbd65441a5]. Add NoVerifyTextAffinity connection flag to skip type affinity checking when fetching a column value as a string. Pursuant to [dbd65441a5]. check-in: ecf9a72b79 user: mistachkin tags: trunk | |
2016-01-12
| ||
23:19 | Mark a 'Potentially Incompatible Change' in the 1.0.99.0 release, per ticket [dbd65441a5]. check-in: b45629dfee user: mistachkin tags: trunk | |
2016-01-07
| ||
23:37 | Move the 'empty' test file to the new 'template' directory. check-in: 518569fee5 user: mistachkin tags: trunk | |
Changes
Changes to Doc/Extra/Provider/version.html.
︙ | ︙ | |||
51 52 53 54 55 56 57 | <p><b>1.0.99.0 - December 9, 2015</b></p> <ul> <li>Updated to <a href="https://www.sqlite.org/releaselog/3_9_2.html">SQLite 3.9.2</a>.</li> <li>Add preliminary support for the .NET Framework 4.6.1.</li> <li>Fix handling of sqlite3_index_info members not available with older versions of the SQLite core library. <b>** Potentially Incompatible Change **</b></li> <li>Update and improve documentation comments for the native virtual table methods.</li> <li>Permit an existing registered function to be replaced. Fix for <a href="https://system.data.sqlite.org/index.html/info/2556655d1b">[2556655d1b]</a>.</li> | | | 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | <p><b>1.0.99.0 - December 9, 2015</b></p> <ul> <li>Updated to <a href="https://www.sqlite.org/releaselog/3_9_2.html">SQLite 3.9.2</a>.</li> <li>Add preliminary support for the .NET Framework 4.6.1.</li> <li>Fix handling of sqlite3_index_info members not available with older versions of the SQLite core library. <b>** Potentially Incompatible Change **</b></li> <li>Update and improve documentation comments for the native virtual table methods.</li> <li>Permit an existing registered function to be replaced. Fix for <a href="https://system.data.sqlite.org/index.html/info/2556655d1b">[2556655d1b]</a>.</li> <li>Make GetValue work for boolean columns with textual "True" and "False" values. Fix for <a href="https://system.data.sqlite.org/index.html/info/7714b60d61">[7714b60d61]</a>. <b>** Potentially Incompatible Change **</b></li> <li>Add Reset method to the SQLiteCommand class.</li> <li>Add FileName property to the SQLiteConnection class.</li> <li>Add experimental support for the native json1 and fts5 extensions.</li> <li>Add GetDatabaseName, GetTableName, and GetOriginalName methods to the SQLiteDataReader class.</li> </ul> <p><b>1.0.98.0 - August 19, 2015</b></p> <ul> |
︙ | ︙ |
Changes to readme.htm.
︙ | ︙ | |||
220 221 222 223 224 225 226 | </p> <ul> <li>Updated to <a href="https://www.sqlite.org/releaselog/3_9_2.html">SQLite 3.9.2</a>.</li> <li>Add preliminary support for the .NET Framework 4.6.1.</li> <li>Fix handling of sqlite3_index_info members not available with older versions of the SQLite core library. <b>** Potentially Incompatible Change **</b></li> <li>Update and improve documentation comments for the native virtual table methods.</li> <li>Permit an existing registered function to be replaced. Fix for [2556655d1b].</li> | | | 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 | </p> <ul> <li>Updated to <a href="https://www.sqlite.org/releaselog/3_9_2.html">SQLite 3.9.2</a>.</li> <li>Add preliminary support for the .NET Framework 4.6.1.</li> <li>Fix handling of sqlite3_index_info members not available with older versions of the SQLite core library. <b>** Potentially Incompatible Change **</b></li> <li>Update and improve documentation comments for the native virtual table methods.</li> <li>Permit an existing registered function to be replaced. Fix for [2556655d1b].</li> <li>Make GetValue work for boolean columns with textual "True" and "False" values. Fix for [7714b60d61]. <b>** Potentially Incompatible Change **</b></li> <li>Add Reset method to the SQLiteCommand class.</li> <li>Add FileName property to the SQLiteConnection class.</li> <li>Add experimental support for the native json1 and fts5 extensions.</li> <li>Add GetDatabaseName, GetTableName, and GetOriginalName methods to the SQLiteDataReader class.</li> </ul> <p> <b>1.0.98.0 - August 19, 2015</b> |
︙ | ︙ |
Changes to www/news.wiki.
︙ | ︙ | |||
14 15 16 17 18 19 20 | </p> <ul> <li>Updated to [https://www.sqlite.org/releaselog/3_9_2.html|SQLite 3.9.2].</li> <li>Add preliminary support for the .NET Framework 4.6.1.</li> <li>Fix handling of sqlite3_index_info members not available with older versions of the SQLite core library. <b>** Potentially Incompatible Change **</b></li> <li>Update and improve documentation comments for the native virtual table methods.</li> <li>Permit an existing registered function to be replaced. Fix for [2556655d1b].</li> | | | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | </p> <ul> <li>Updated to [https://www.sqlite.org/releaselog/3_9_2.html|SQLite 3.9.2].</li> <li>Add preliminary support for the .NET Framework 4.6.1.</li> <li>Fix handling of sqlite3_index_info members not available with older versions of the SQLite core library. <b>** Potentially Incompatible Change **</b></li> <li>Update and improve documentation comments for the native virtual table methods.</li> <li>Permit an existing registered function to be replaced. Fix for [2556655d1b].</li> <li>Make GetValue work for boolean columns with textual "True" and "False" values. Fix for [7714b60d61]. <b>** Potentially Incompatible Change **</b></li> <li>Add Reset method to the SQLiteCommand class.</li> <li>Add FileName property to the SQLiteConnection class.</li> <li>Add experimental support for the native json1 and fts5 extensions.</li> <li>Add GetDatabaseName, GetTableName, and GetOriginalName methods to the SQLiteDataReader class.</li> </ul> <p> <b>1.0.98.0 - August 19, 2015</b> |
︙ | ︙ |