Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Updates for the 1.0.97.0 release. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk | release | release-1.0.97.0 |
Files: | files | file ages | folders |
SHA1: |
b4a469371eabb16f0b751e489e1449a0 |
User & Date: | mistachkin 2015-05-26 22:54:23.036 |
Context
2015-05-27
| ||
00:14 | Update the download page for release 1.0.97.0. check-in: b31d2517cc user: mistachkin tags: trunk | |
2015-05-26
| ||
22:54 | Updates for the 1.0.97.0 release. check-in: b4a469371e user: mistachkin tags: trunk, release, release-1.0.97.0 | |
19:37 | Rebuild the CHM file. Closed-Leaf check-in: af3eee23f3 user: mistachkin tags: preRelease | |
19:06 | Updates for the 1.0.97.0 release. check-in: e63ae6e43f user: mistachkin tags: preRelease | |
2015-05-20
| ||
21:53 | Update SQLite core library to the 3.8.10.2 release. check-in: 0fc18b9f9e user: mistachkin tags: trunk | |
Changes
Changes to Doc/Extra/Core/lang_attach.html.
︙ | ︙ | |||
203 204 205 206 207 208 209 | </blockquote> </blockquote> </blockquote> <p> The ATTACH DATABASE statement adds another database file to the current <a href="c3ref/sqlite3.html">database connection</a>. | > > > | | 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 | </blockquote> </blockquote> </blockquote> <p> The ATTACH DATABASE statement adds another database file to the current <a href="c3ref/sqlite3.html">database connection</a>. Database files that were previously attached can be removed using the <a href="lang_detach.html">DETACH DATABASE</a> command. <p>The filename for the database to be attached is the value of the expression that occurs before the AS keyword. The filename of the database follows the same semantics as the filename argument to <a href="c3ref/open.html">sqlite3_open()</a> and <a href="c3ref/open.html">sqlite3_open_v2()</a>; the special name "<a href="inmemorydb.html">:memory:</a>" results in an <a href="inmemorydb.html">in-memory database</a> and an empty string results in a new temporary database. The filename argument can be a <a href="uri.html">URI filename</a> if URI filename processing is enable on the database connection. The default behavior is for |
︙ | ︙ |
Changes to Doc/Extra/Core/pragma.html.
︙ | ︙ | |||
284 285 286 287 288 289 290 | <li><a href="#pragma_wal_checkpoint">wal_checkpoint</a> <li><a href="#pragma_writable_schema">writable_schema</a> </ul></td></tr></table> <p>Notes: <ol> <li>Pragmas whose names are marked through in the list above | > | | 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 | <li><a href="#pragma_wal_checkpoint">wal_checkpoint</a> <li><a href="#pragma_writable_schema">writable_schema</a> </ul></td></tr></table> <p>Notes: <ol> <li>Pragmas whose names are marked through in the list above are deprecated. They are not maintained. They continue to exist for historical compatibility only. Do not use the deprecated pragmas in new applications. Remove deprecated pragmas from existing applications at your earliest opportunity.</blockquote> <li>These pragmas are used for debugging SQLite and are only available when SQLite is compiled using <a href="compile.html#debug">SQLITE_DEBUG</a>. <li>These pragmas are used for testing SQLite and are not recommended for use in application programs.</ol></p> |
︙ | ︙ |
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.97.0 - May 26, 2015</b></p> <ul> <li>Updated to <a href="https://www.sqlite.org/releaselog/3_8_10_2.html">SQLite 3.8.10.2</a>.</li> <li>Updated to <a href="https://www.nuget.org/packages/EntityFramework/6.1.3">Entity Framework 6.1.3</a>.</li> <li>Improve ADO.NET conformance of the SQLiteDataReader.RecordsAffected property. Fix for <a href="https://system.data.sqlite.org/index.html/info/74542e702e">[74542e702e]</a>. <b>** Potentially Incompatible Change **</b></li> <li>Prevent the IDataReader.GetDataTypeName method from throwing "No current row" exceptions. Fix for <a href="https://system.data.sqlite.org/index.html/info/94252b9059">[94252b9059]</a>.</li> <li>When BinaryGUID handling is off, transform the LINQ parameter types as well. Fix for <a href="https://system.data.sqlite.org/index.html/info/a4d9c7ee94">[a4d9c7ee94]</a>. <b>** Potentially Incompatible Change **</b></li> <li>The IDataReader.GetDataTypeName method should always return the declared type name. <b>** Potentially Incompatible Change **</b></li> |
︙ | ︙ |
Changes to Doc/SQLite.NET.chm.
cannot compute difference between binary files
Changes to NuGet/shared/Core/build/System.Data.SQLite.Core.targets.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | <!-- * * System.Data.SQLite.Core.targets - * * WARNING: This MSBuild file requires MSBuild 4.0 features. * * Written by Joe Mistachkin and David Archer. * Released to the public domain, use at your own risk! * --> <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <!-- ****************************************************************************** ** SQLite Interop Library Build Items ** ****************************************************************************** --> <ItemGroup> <SQLiteInteropFiles Condition="'$(MSBuildThisFileDirectory)' != '' And HasTrailingSlash('$(MSBuildThisFileDirectory)')" Include="$(MSBuildThisFileDirectory)**\SQLite.Interop.*" /> </ItemGroup> <!-- ****************************************************************************** ** SQLite Interop Library Build Targets ** ****************************************************************************** --> <Target Name="CopySQLiteInteropFiles" | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | <!-- * * System.Data.SQLite.Core.targets - * * WARNING: This MSBuild file requires MSBuild 4.0 features. * * Written by Joe Mistachkin and David Archer. * Released to the public domain, use at your own risk! * --> <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <!-- ****************************************************************************** ** Load Per-User Settings ** ****************************************************************************** --> <!-- NOTE: If the per-user settings file exists, import it now. The contained settings, if any, will override the default ones provided below. --> <Import Condition="'$(MSBuildThisFileDirectory)' != '' And HasTrailingSlash('$(MSBuildThisFileDirectory)') And Exists('$(MSBuildThisFileDirectory)\System.Data.SQLite.Core.targets.user')" Project="$(MSBuildThisFileDirectory)\System.Data.SQLite.Core.targets.user" /> <!-- ****************************************************************************** ** SQLite Interop Library Build Items ** ****************************************************************************** --> <ItemGroup> <SQLiteInteropFiles Condition="'$(MSBuildThisFileDirectory)' != '' And HasTrailingSlash('$(MSBuildThisFileDirectory)')" Include="$(MSBuildThisFileDirectory)**\SQLite.Interop.*" /> </ItemGroup> <!-- ****************************************************************************** ** SQLite Interop Library Content Items ** ****************************************************************************** --> <ItemGroup Condition="'$(ContentSQLiteInteropFiles)' != '' And '$(ContentSQLiteInteropFiles)' != 'false' And '@(SQLiteInteropFiles)' != ''"> <Content Include="@(SQLiteInteropFiles)"> <Link>%(RecursiveDir)%(FileName)%(Extension)</Link> <CopyToOutputDirectory>Always</CopyToOutputDirectory> </Content> </ItemGroup> <!-- ****************************************************************************** ** SQLite Interop Library Build Targets ** ****************************************************************************** --> <Target Name="CopySQLiteInteropFiles" |
︙ | ︙ |
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.97.0 - May 26, 2015<br /> Using <a href="https://www.sqlite.org/releaselog/3_8_10_2.html">SQLite 3.8.10.2</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="http://sqlite.phxsoftware.com/">http://sqlite.phxsoftware.com/</a><br /> <br /> The current development version can be downloaded from <a href="https://system.data.sqlite.org/index.html/timeline?y=ci"> |
︙ | ︙ | |||
205 206 207 208 209 210 211 | designed for robustness and maximum backward compatibility with previously released versions of System.Data.SQLite. </p> <h2><b>Version History</b></h2> <p> | | | 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 | 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.97.0 - May 26, 2015</b> </p> <ul> <li>Updated to <a href="https://www.sqlite.org/releaselog/3_8_10_2.html">SQLite 3.8.10.2</a>.</li> <li>Updated to <a href="https://www.nuget.org/packages/EntityFramework/6.1.3">Entity Framework 6.1.3</a>.</li> <li>Improve ADO.NET conformance of the SQLiteDataReader.RecordsAffected property. Fix for [74542e702e]. <b>** Potentially Incompatible Change **</b></li> <li>Prevent the IDataReader.GetDataTypeName method from throwing "No current row" exceptions. Fix for [94252b9059].</li> <li>When BinaryGUID handling is off, transform the LINQ parameter types as well. Fix for [a4d9c7ee94]. <b>** Potentially Incompatible Change **</b></li> |
︙ | ︙ |
Changes to www/news.wiki.
1 2 3 4 5 | <title>News</title> <b>Version History</b> <p> | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | <title>News</title> <b>Version History</b> <p> <b>1.0.97.0 - May 26, 2015</b> </p> <ul> <li>Updated to [https://www.sqlite.org/releaselog/3_8_10_2.html|SQLite 3.8.10.2].</li> <li>Updated to [https://www.nuget.org/packages/EntityFramework/6.1.3|Entity Framework 6.1.3].</li> <li>Improve ADO.NET conformance of the SQLiteDataReader.RecordsAffected property. Fix for [74542e702e]. <b>** Potentially Incompatible Change **</b></li> <li>Prevent the IDataReader.GetDataTypeName method from throwing "No current row" exceptions. Fix for [94252b9059].</li> <li>When BinaryGUID handling is off, transform the LINQ parameter types as well. Fix for [a4d9c7ee94]. <b>** Potentially Incompatible Change **</b></li> |
︙ | ︙ |