Version History
+1.0.106.0 - June XX, 2017 (release scheduled)
+-
+
- Updated to SQLite 3.19.0. +
- Prevent culture settings from negatively impacting integer connection string defaults. +
1.0.105.0 - April 9, 2017
- Updated to SQLite 3.18.0.
- Add experimental support for native sha1 extension.
Distributing the Binaries (Compact Framework)
Both the System.Data.SQLite.DLL and SQLite.Interop.XXX.DLL files must be deployed on the Compact Framework. The XXX is the build number of - the System.Data.SQLite library (e.g. "105"). The + the System.Data.SQLite library (e.g. "106"). The SQLite.Interop.XXX.DLL file is a fully native assembly compiled for the ARM processor, and System.Data.SQLite is the fully-managed Compact Framework assembly.
-
-**
- TEXT -**
- BLOB -**
- NUMERIC -**
- INTEGER -**
- REAL +**
- P2=='A' → BLOB +**
- P2=='B' → TEXT +**
- P2=='C' → NUMERIC +**
- P2=='D' → INTEGER +**
- P2=='E' → REAL **
-Version 1.0.105.0 - April 9, 2017
-Using SQLite 3.18.0
Originally written by Robert Simpson
+Version 1.0.106.0 - June XX, 2017 (release scheduled)
+Using SQLite 3.19.0
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: https://sourceforge.net/projects/sqlite-dotnet2/
The current development version can be downloaded from @@ -143,11 +143,11 @@ <configuration> <system.data> <DbProviderFactories> <remove invariant="System.Data.SQLite" /> <add name="SQLite Data Provider" invariant="System.Data.SQLite" description=".NET Framework Data Provider for SQLite" - type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite, Version=1.0.105.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139" /> + type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite, Version=1.0.106.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139" /> </DbProviderFactories> </system.data> </configuration>
@@ -205,10 +205,17 @@ released versions of System.Data.SQLite.
Version History
++ 1.0.106.0 - June XX, 2017 (release scheduled) +
+-
+
- Updated to SQLite 3.19.0. +
- Prevent culture settings from negatively impacting integer connection string defaults. +
1.0.105.0 - April 9, 2017
- Updated to SQLite 3.18.0. Index: test/AssemblyInfo.cs ================================================================== --- test/AssemblyInfo.cs +++ test/AssemblyInfo.cs @@ -36,7 +36,7 @@ // Major Version // Minor Version // Build Number // Revision // -[assembly: AssemblyVersion("1.0.105.0")] -[assembly: AssemblyFileVersion("1.0.105.0")] +[assembly: AssemblyVersion("1.0.106.0")] +[assembly: AssemblyFileVersion("1.0.106.0")] Index: test/app.config ================================================================== --- test/app.config +++ test/app.config @@ -1,8 +1,8 @@
Version History
+ 1.0.106.0 - June XX, 2017 (release scheduled) +
+-
+
- Updated to [https://www.sqlite.org/draft/releaselog/3_19_0.html|SQLite 3.19.0]. +
- Prevent culture settings from negatively impacting integer connection string defaults. +
1.0.105.0 - April 9, 2017
- Updated to [https://www.sqlite.org/releaselog/3_18_0.html|SQLite 3.18.0].