Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Documentation updates for the 1.0.108.0 release. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | preRelease |
Files: | files | file ages | folders |
SHA1: |
2e5931eb3b3d693946e33c52778dc487 |
User & Date: | mistachkin 2018-03-02 12:37:57.789 |
Context
2018-03-02
| ||
12:55 | Update downloads page for the 1.0.108.0 release. Closed-Leaf check-in: b5a0125e1d user: mistachkin tags: preRelease | |
12:37 | Documentation updates for the 1.0.108.0 release. check-in: 2e5931eb3b user: mistachkin tags: preRelease | |
2018-02-27
| ||
17:24 | Adjust the test constraints impacted by Mono 5.10. check-in: 2814aa20f8 user: mistachkin tags: trunk | |
Changes
Changes to Doc/Extra/Provider/version.html.
︙ | ︙ | |||
39 40 41 42 43 44 45 | </td> </tr> </table> </div> <div id="mainSection"> <div id="mainBody"> <h1 class="heading">Version History</h1> | | | 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | </td> </tr> </table> </div> <div id="mainSection"> <div id="mainBody"> <h1 class="heading">Version History</h1> <p><b>1.0.108.0 - March 2, 2018</b></p> <ul> <li>Support extended result codes when messages are looked up without the SQLite core library.</li> <li>Override System.Object members for the SQLiteException class to improve its ToString return value. Pursuant to <a href="https://system.data.sqlite.org/index.html/info/53962f9eff">[53962f9eff]</a>.</li> <li>More database connection configuration options for the <a href="https://www.sqlite.org/c3ref/db_config.html">sqlite3_db_config()</a> interface. <b>** Potentially Incompatible Change **</b></li> <li>Set HResult property of SQLiteException based on the SQLite core library error code. <b>** Potentially Incompatible Change **</b></li> <li>Modify experimental WaitForEnlistmentReset method to require a nullable boolean parameter for the value to return when the connection is disposed. <b>** Potentially Incompatible Change **</b></li> </ul> |
︙ | ︙ |
Changes to Doc/SQLite.NET.chm.
cannot compute difference between binary files
Changes to Doc/Special/Core/vtab.html.
︙ | ︙ | |||
284 285 286 287 288 289 290 | </p><div class="codeblock"><pre>SELECT * FROM dbstat; </pre></div> <p>A virtual table is eponymous if its <a href="vtab.html#xcreate">xCreate</a> method is the exact same function as the <a href="vtab.html#xconnect">xConnect</a> method, or if the <a href="vtab.html#xcreate">xCreate</a> method is NULL. The <a href="vtab.html#xcreate">xCreate</a> method is called when a virtual table is first created | | > | 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 | </p><div class="codeblock"><pre>SELECT * FROM dbstat; </pre></div> <p>A virtual table is eponymous if its <a href="vtab.html#xcreate">xCreate</a> method is the exact same function as the <a href="vtab.html#xconnect">xConnect</a> method, or if the <a href="vtab.html#xcreate">xCreate</a> method is NULL. The <a href="vtab.html#xcreate">xCreate</a> method is called when a virtual table is first created using the <a href="lang_createvtab.html">CREATE VIRTUAL TABLE</a> statement. The <a href="vtab.html#xconnect">xConnect</a> method is invoked whenever a database connection attaches to or reparses a schema. When these two methods are the same, that indicates that the virtual table has no persistent state that needs to be created and destroyed. <a name="epoonlyvtab"></a> </p><h3 id="eponymous_only_virtual_tables"><span>1.1.3. </span>Eponymous-only virtual tables</h3> |
︙ | ︙ |
Changes to readme.htm.
1 2 3 4 5 6 7 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title></title> </head> <body> ADO.NET SQLite Data Provider<br /> | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title></title> </head> <body> ADO.NET SQLite Data Provider<br /> Version 1.0.108.0 - March 2, 2018<br /> Using <a href="https://www.sqlite.org/releaselog/3_22_0.html">SQLite 3.22.0</a><br />Originally written by Robert Simpson<br /> Released to the public domain, use at your own risk!<br /> Official provider website: <a href="https://system.data.sqlite.org/">https://system.data.sqlite.org/</a><br /> Legacy versions: <a href="https://sourceforge.net/projects/sqlite-dotnet2/">https://sourceforge.net/projects/sqlite-dotnet2/</a><br /> <br /> The current development version can be downloaded from <a href="https://system.data.sqlite.org/index.html/timeline?y=ci"> https://system.data.sqlite.org/index.html/timeline?y=ci</a> |
︙ | ︙ | |||
204 205 206 207 208 209 210 | designed for robustness and maximum backward compatibility with previously released versions of System.Data.SQLite. </p> <h2><b>Version History</b></h2> <p> | | | 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 | designed for robustness and maximum backward compatibility with previously released versions of System.Data.SQLite. </p> <h2><b>Version History</b></h2> <p> <b>1.0.108.0 - March 2, 2018</b> </p> <ul> <li>Support extended result codes when messages are looked up without the SQLite core library.</li> <li>Override System.Object members for the SQLiteException class to improve its ToString return value. Pursuant to [53962f9eff].</li> <li>More database connection configuration options for the <a href="https://www.sqlite.org/c3ref/db_config.html">sqlite3_db_config()</a> interface. <b>** Potentially Incompatible Change **</b></li> <li>Set HResult property of SQLiteException based on the SQLite core library error code. <b>** Potentially Incompatible Change **</b></li> <li>Modify experimental WaitForEnlistmentReset method to require a nullable boolean parameter for the value to return when the connection is disposed. <b>** Potentially Incompatible Change **</b></li> |
︙ | ︙ |
Changes to www/news.wiki.
︙ | ︙ | |||
41 42 43 44 45 46 47 | Access to archived release packages will be granted on a case-by-case basis. </li> </ul> <div align="center"><h2><b>Version History</b></h2></div> <p> | | | 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | Access to archived release packages will be granted on a case-by-case basis. </li> </ul> <div align="center"><h2><b>Version History</b></h2></div> <p> <b>1.0.108.0 - March 2, 2018</b> </p> <ul> <li>Support extended result codes when messages are looked up without the SQLite core library.</li> <li>Override System.Object members for the SQLiteException class to improve its ToString return value. Pursuant to [53962f9eff].</li> <li>More database connection configuration options for the [https://www.sqlite.org/c3ref/db_config.html|sqlite3_db_config()] interface. <b>** Potentially Incompatible Change **</b></li> <li>Set HResult property of SQLiteException based on the SQLite core library error code. <b>** Potentially Incompatible Change **</b></li> <li>Modify experimental WaitForEnlistmentReset method to require a nullable boolean parameter for the value to return when the connection is disposed. <b>** Potentially Incompatible Change **</b></li> |
︙ | ︙ |