Index: Doc/Extra/Core/lang_attach.html ================================================================== --- Doc/Extra/Core/lang_attach.html +++ Doc/Extra/Core/lang_attach.html @@ -205,11 +205,14 @@

The ATTACH DATABASE statement adds another database file to the current database connection. -The filename for the database to be attached is the value of +Database files that were previously attached can be removed using +the DETACH DATABASE command. + +

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 sqlite3_open() and sqlite3_open_v2(); the special name ":memory:" results in an in-memory database and an empty string results in a new temporary database. Index: Doc/Extra/Core/pragma.html ================================================================== --- Doc/Extra/Core/pragma.html +++ Doc/Extra/Core/pragma.html @@ -286,11 +286,12 @@

Notes:

  1. Pragmas whose names are marked through in the list above -are deprecated that are maintained for historical compatibility only. +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.
  2. These pragmas are used for debugging SQLite and are only available when SQLite is compiled using SQLITE_DEBUG. Index: Doc/Extra/Provider/version.html ================================================================== --- Doc/Extra/Provider/version.html +++ Doc/Extra/Provider/version.html @@ -41,11 +41,11 @@

    Version History

    -

    1.0.97.0 - May XX, 2015 (release scheduled)

    +

    1.0.97.0 - May 26, 2015

    • Updated to SQLite 3.8.10.2.
    • Updated to Entity Framework 6.1.3.
    • Improve ADO.NET conformance of the SQLiteDataReader.RecordsAffected property. Fix for [74542e702e]** Potentially Incompatible Change **
    • Prevent the IDataReader.GetDataTypeName method from throwing "No current row" exceptions. Fix for [94252b9059].
    • Index: Doc/SQLite.NET.chm ================================================================== --- Doc/SQLite.NET.chm +++ Doc/SQLite.NET.chm cannot compute difference between binary files Index: NuGet/shared/Core/build/System.Data.SQLite.Core.targets ================================================================== --- NuGet/shared/Core/build/System.Data.SQLite.Core.targets +++ NuGet/shared/Core/build/System.Data.SQLite.Core.targets @@ -7,10 +7,25 @@ * Written by Joe Mistachkin and David Archer. * Released to the public domain, use at your own risk! * --> + + + + + @@ -19,10 +34,25 @@ + + + + + %(RecursiveDir)%(FileName)%(Extension) + Always + + + Index: readme.htm ================================================================== --- readme.htm +++ readme.htm @@ -3,11 +3,11 @@ ADO.NET SQLite Data Provider
      -Version 1.0.97.0 - May XX, 2015 (release scheduled)
      +Version 1.0.97.0 - May 26, 2015
      Using SQLite 3.8.10.2
      Originally written by Robert Simpson
      Released to the public domain, use at your own risk!
      Official provider website: https://system.data.sqlite.org/
      Legacy versions: http://sqlite.phxsoftware.com/
      @@ -207,11 +207,11 @@

      Version History

      - 1.0.97.0 - May XX, 2015 (release scheduled) + 1.0.97.0 - May 26, 2015

      • Updated to SQLite 3.8.10.2.
      • Updated to Entity Framework 6.1.3.
      • Improve ADO.NET conformance of the SQLiteDataReader.RecordsAffected property. Fix for [74542e702e]. ** Potentially Incompatible Change **
      • Index: www/news.wiki ================================================================== --- www/news.wiki +++ www/news.wiki @@ -1,11 +1,11 @@ News Version History

        - 1.0.97.0 - May XX, 2015 (release scheduled) + 1.0.97.0 - May 26, 2015

        • Updated to [https://www.sqlite.org/releaselog/3_8_10_2.html|SQLite 3.8.10.2].
        • Updated to [https://www.nuget.org/packages/EntityFramework/6.1.3|Entity Framework 6.1.3].
        • Improve ADO.NET conformance of the SQLiteDataReader.RecordsAffected property. Fix for [74542e702e]. ** Potentially Incompatible Change **