Version History
-1.0.80.0 - April XX, 2012
+1.0.81.0 - June XX, 2012
-
+
- Support compiling the interop assembly without support for the custom extension functions and the CryptoAPI based codec. +
- Add DefineConstants property to the SQLiteConnection class to return the list of define constants used when compiling the core managed assembly. +
- Add release archive verification tool to the release automation. +
- Fix subtle race condition between threads fetching connection handles from the connection pool any garbage collection (GC) threads that may be running. Fix for [996d13cd87]. +
- Add missing call to SetTimeout in the SQLite3_UTF16.Open method. +
- Add checks to prevent the SQLiteConnectionPool.Remove method from returning any connection handles that are closed or invalid. +
- Modify static SQLiteBase helper methods to prevent them from passing IntPtr.Zero to the SQLite native library. +
- Remove static locks from the static helper methods in the SQLiteBase class, replacing them with a lock on the connection handle instance being operated upon. +
- Revise CriticalHandle derived classes to make them more thread-safe. +
- Add connection pool related diagnostic messages when compiled with the DEBUG define constant. +
- Add PoolCount property to the SQLiteConnection class to return the number of pool entries for the file name associated with the connection. +
- Rename internal SQLiteLastError methods to GetLastError. +
- Add assembly file test constraints to all tests that execute the "test.exe" or "testlinq.exe" files. +
1.0.80.0 - April 1, 2012
+-
+
- Updated to SQLite 3.7.11.
- In the SQLiteFunction class, when calling user-provided methods from a delegate called by native code, avoid throwing exceptions, optionally tracing the caught exceptions. Fix for [8a426d12eb].
- Add Visual Studio 2005 support to all the applicable solution/project files, their associated supporting files, and the test suite.
- Add Visual Studio 2005 support to the redesigned designer support installer.
- Add experimental support for "pre-loading" the native SQLite library based on the processor architecture of the current process. This feature is now enabled by default at compile-time. +
- Add support for the native SQLite Online Backup API. Fix for [c71846ed57].
- Acquire and hold a static data lock while checking if the native SQLite library has been initialized to prevent a subtle race condition that can result in superfluous error messages. Fix for [72905c9a77].
- Support tracing of all parameter binding activity and use the connection flags to control what is traced.
- When converting a DateTime instance of an "Unspecified" kind to a string, use the same kind as the connection, if available.
- Add overload of the SQLiteDataReader.GetValues method that returns a NameValueCollection.
- Add static ToUnixEpoch method to the SQLiteConvert class to convert a DateTime value to the number of whole seconds since the Unix epoch.
- In the implicit conversion operators (to IntPtr) for both the SQLiteConnectionHandle and SQLiteStatementHandle classes, return IntPtr.Zero if the instance being converted is null. -
- Write warning message to the active trace listners (for the Debug build configuration only) if a column type or type name cannot be mapped properly. See [4bbf851fa5]. +
- Write warning message to the active trace listeners (for the Debug build configuration only) if a column type or type name cannot be mapped properly. See [4bbf851fa5].
- When tracing SQL statements to be prepared, bypass the internal length limit of the sqlite3_log function by using the SQLiteLog class directly instead. Also, detect null and/or empty strings and emit a special message in that case.
- For the setup, the Visual Studio task should only be initially checked if the GAC task is available and vice-versa.
- Improve compatibility with custom command processors by using __ECHO instead of _ECHO in batch tools.
- Add OpenAndReturn method to the SQLiteConnection class to open a connection and return it.
- Add missing CheckDisposed calls to the SQLiteConnection class. Index: Doc/Extra/welcome.html ================================================================== --- Doc/Extra/welcome.html +++ Doc/Extra/welcome.html @@ -41,64 +41,68 @@
About SQLite.NET
-This class library is an ADO.NET wrapper around the popular (and free!) - SQLite database engine. For information on SQL syntax, features of SQLite and a - good understanding of how it works and what it does, I highly recommend heading - over to sqlite.org and +
This class library is an ADO.NET wrapper around the popular (and free!) + SQLite database engine. For information on SQL syntax, features of SQLite and a + good understanding of how it works and what it does, I highly recommend heading + over to sqlite.org and reading the documentation there.
-The C# provider, the very minor C code modifications to SQLite, documentation and
- etc were written by Robert
+ The C# provider, the very minor C code modifications to SQLite, documentation and
+ etc were written by Robert
Simpson, and the SourceForge project page can be found
here. The System.Data.SQLite project is currently maintained by the
+ SQLite Development Team and
+ the latest source code and project information can be found
+ here. Click here to see the version history of this SQLite.NET
+ Click here to see the version history of this SQLite.NET
provider The following are links to information on various aspects of the library and
+ The following are links to information on various aspects of the library and
how to use it in your application(s)
How to install Visual Studio Design-Time Support How to configure and enumerate SQLite.NET
+ How to configure and enumerate SQLite.NET
through the DbProviderFactories object Getting the best performance out of SQLite Limitations of the SQLite.NET provider and the SQLite
+
This SQLite provider implements every feature of the underlying SQLite
+ This SQLite provider implements every feature of the underlying SQLite
database engine without omission. Here's a brief summary: When using the mixed-mode assembly, the System.Data.SQLite.DLL file
@@ -154,11 +158,11 @@
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. "080"). The
+ the System.Data.SQLite library (e.g. "081"). 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.
@@ -185,24 +185,44 @@
- 1.0.80.0 - April XX, 2012
+ 1.0.81.0 - June XX, 2012
+
+ 1.0.80.0 - April 1, 2012
- The framework in templates (3), (4), (5), (6), (7), and (8) will be one of netFx35, netFx40.
+ The framework in templates (3), (4), (5), (6), (7), and (8) will be
+ one of netFx35, netFx40.
+
+ The cpu in templates (3) and (4) will be one of x86, x64, arm, ia64.
+
+ The platform in templates (5), (6), (7), and (8) will be one of Win32,
+ x64, PocketPC.
- The cpu in templates (3) and (4) will be one of x86, x64, arm, ia64.
+ The year in templates (3), (4), (5), (6), (7), and (8) will be one of
+ 2008, 2010.
- The platform in templates (5), (6), (7), and (8) will be one of Win32, x64, PocketPC.
+ The version in templates (1), (2), (3), (4), (5), (6), (7), and (8) is
+ the dot-delimited version number of the primary System.Data.SQLite assembly.
- The year in templates (3), (4), (5), (6), (7), and (8) will be one of 2008, 2010.
-
- The version in templates (1), (2), (3), (4), (5), (6), (7), and (8) is the dot-delimited version number of the primary System.Data.SQLite assembly.
-
- The date in template (9) is of the form: YYYYMMDDHHMM
+ The date in template (9) is of the form: YYYYMMDDHHMM
@@ -634,8 +638,8 @@
or ZIP archives of historical check-ins.
The complete source tree for any [/timeline?n=20&y=ci | check-in] may always
- be downloaded using the "ZIP archive" link available from the
- check-in detail page.
+ be downloaded using the "Tarball" or "ZIP archive" links
+ available from the check-in detail page.
@@ -442,5 +450,35 @@
design-time, the C# source code files do not show up in the Solution Explorer
window. This limitation is largely cosmetic and does not impact the
correctness of the build process itself, whether in Visual Studio or when
using MSBuild on the command line.
+ (20) When the System.Data.SQLite project is compiled and run from inside
+ Visual Studio, why do I get a DllNotFoundException or a BadImageFormatException
+ (for "sqlite3.dll" or "SQLite.Interop.dll") when trying to
+ run or debug the application?
+
+ When compiling and running a solution from within Visual Studio that uses the
+ System.Data.SQLite project (including the test project), it is very important
+ to select the correct build configuration and platform. First, managed
+ applications to be debugged inside Visual Studio cannot use the mixed-mode
+ assembly (i.e. because it is always compiled to the platform-specific build
+ output directory). This is necessary to properly support building binaries
+ for multiple platforms using the same source project files. Therefore, only
+ the "DebugNativeOnly" or "ReleaseNativeOnly" build
+ configurations should be selected when running a managed application from
+ inside Visual Studio that relies upon the System.Data.SQLite assembly. These
+ build configurations contain a custom post-build step that copies the required
+ native assembly to the managed output directory (i.e. to enable running the
+ managed binaries in-place). However, this post-build step will only be
+ performed if the selected platform matches that of the operating system (e.g.
+ "Win32" for 32-bit Windows and "x64" for 64-bit Windows).
+ Therefore, it is good practice to double-check the selected build platform
+ against the operating system prior to attempting to run a managed project in
+ the solution.
+
- 1.0.80.0 - April XX, 2012 (release scheduled)
+ 1.0.81.0 - June XX, 2012 (release scheduled)
+
+ 1.0.80.0 - April 1, 2012
What's New?
-
Using this library
-
SQLite.NET Provider Features
-
@@ -108,37 +112,37 @@
Distributing the Binaries (Desktop)
Distributing the Binaries (Compact Framework)
-Version 1.0.80.0 April XX, 2012 (release scheduled)
-Using SQLite 3.7.10
+Version 1.0.81.0 June XX, 2012 (release scheduled)
+Using SQLite 3.7.11
Originally written by Robert Simpson
Released to the public domain, use at your own risk!
Official provider website: http://system.data.sqlite.org/
Legacy versions: http://sqlite.phxsoftware.com/
@@ -144,11 +144,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.80.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139" />
+ type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite, Version=1.0.81.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139" />
</DbProviderFactories>
</system.data>
</configuration>
Version History
+
+
+
- sqlite-netFx-source-1.0.79.0.zip
+ sqlite-netFx-source-1.0.80.0.zip
- (2.62 MiB)
+ (2.68 MiB)
This ZIP archive contains all current source code for System.Data.SQLite
- 1.0.79.0 (3.7.10) combined into a single archive file.
+ 1.0.80.0 (3.7.11) combined into a single archive file.
- (sha1: 634b93112cd3bd093933760944aa3bf8740a455a)
+ (sha1: 96e37d1d9146f9cd6721ef273eb3973d1612c0ad)
@@ -32,40 +32,40 @@
- sqlite-netFx35-setup-bundle-x86-2008-1.0.79.0.exe
+ sqlite-netFx35-setup-bundle-x86-2008-1.0.80.0.exe
- (6.02 MiB)
+ (6.04 MiB)
This setup package features the mixed-mode assembly and will install all
the necessary runtime components and dependencies for the x86 version of
- the System.Data.SQLite 1.0.79.0 (3.7.10) package. The Visual C++ 2008
+ the System.Data.SQLite 1.0.80.0 (3.7.11) package. The Visual C++ 2008
SP1 runtime for x86 is included. The .NET Framework 3.5 SP1 is required.
- (sha1: 5a6de51b4d2c06629b7070c2c147f6a6eb8ce043)
+ (sha1: a4b9b35779ae85ce02f0e0a622f3039163335858)
- sqlite-netFx35-setup-x86-2008-1.0.79.0.exe
+ sqlite-netFx35-setup-x86-2008-1.0.80.0.exe
- (6.02 MiB)
+ (6.03 MiB)
This setup package will install all the necessary runtime components and
- dependencies for the x86 version of the System.Data.SQLite 1.0.79.0
- (3.7.10) package. The Visual C++ 2008 SP1 runtime for x86 is included.
+ dependencies for the x86 version of the System.Data.SQLite 1.0.80.0
+ (3.7.11) package. The Visual C++ 2008 SP1 runtime for x86 is included.
The .NET Framework 3.5 SP1 is required.
- (sha1: 2208f5903ed522aa6b5718fcce5f22b528c62640)
+ (sha1: d8ddde29f3fc0ded715d632501809158c174fd4a)
@@ -74,40 +74,40 @@
- sqlite-netFx35-setup-bundle-x64-2008-1.0.79.0.exe
+ sqlite-netFx35-setup-bundle-x64-2008-1.0.80.0.exe
- (6.76 MiB)
+ (6.77 MiB)
This setup package features the mixed-mode assembly and will install all
the necessary runtime components and dependencies for the x64 version of
- the System.Data.SQLite 1.0.79.0 (3.7.10) package. The Visual C++ 2008
+ the System.Data.SQLite 1.0.80.0 (3.7.11) package. The Visual C++ 2008
SP1 runtime for x64 is included. The .NET Framework 3.5 SP1 is required.
- (sha1: 3b5febbc8915fd353ce9cbf28228635edf78d8c4)
+ (sha1: 65d6b88e6180f0956ed189de2e8595fb70d90970)
- sqlite-netFx35-setup-x64-2008-1.0.79.0.exe
+ sqlite-netFx35-setup-x64-2008-1.0.80.0.exe
- (6.75 MiB)
+ (6.77 MiB)
This setup package will install all the necessary runtime components and
- dependencies for the x64 version of the System.Data.SQLite 1.0.79.0
- (3.7.10) package. The Visual C++ 2008 SP1 runtime for x64 is included.
+ dependencies for the x64 version of the System.Data.SQLite 1.0.80.0
+ (3.7.11) package. The Visual C++ 2008 SP1 runtime for x64 is included.
The .NET Framework 3.5 SP1 is required.
- (sha1: e0845f081c19edb6c27878e33bc9e4c2f166220e)
+ (sha1: 93da8e2d4e556c232587251f826d8e87da4969c9)
@@ -116,40 +116,40 @@
- sqlite-netFx40-setup-bundle-x86-2010-1.0.79.0.exe
+ sqlite-netFx40-setup-bundle-x86-2010-1.0.80.0.exe
- (10.35 MiB)
+ (10.36 MiB)
This setup package features the mixed-mode assembly and will install all
the necessary runtime components and dependencies for the x86 version of
- the System.Data.SQLite 1.0.79.0 (3.7.10) package. The Visual C++ 2010
+ the System.Data.SQLite 1.0.80.0 (3.7.11) package. The Visual C++ 2010
SP1 runtime for x86 is included. The .NET Framework 4.0 is required.
- (sha1: 2f6f2b9d507a7c751b638f76a1e3b25bc2322b76)
+ (sha1: 0d7a51989eb3f23bbf3d695c9af264666031e7c3)
- sqlite-netFx40-setup-x86-2010-1.0.79.0.exe
+ sqlite-netFx40-setup-x86-2010-1.0.80.0.exe
- (10.34 MiB)
+ (10.36 MiB)
This setup package will install all the necessary runtime components and
- dependencies for the x86 version of the System.Data.SQLite 1.0.79.0
- (3.7.10) package. The Visual C++ 2010 SP1 runtime for x86 is included.
+ dependencies for the x86 version of the System.Data.SQLite 1.0.80.0
+ (3.7.11) package. The Visual C++ 2010 SP1 runtime for x86 is included.
The .NET Framework 4.0 is required.
- (sha1: b60fb8a586118182a3bee8dcbf77433ca651feec)
+ (sha1: ee2a4dde8f470eee99d1a616c5c2eab0dd2e245e)
@@ -158,40 +158,40 @@
- sqlite-netFx40-setup-bundle-x64-2010-1.0.79.0.exe
+ sqlite-netFx40-setup-bundle-x64-2010-1.0.80.0.exe
- (11.60 MiB)
+ (11.62 MiB)
This setup package features the mixed-mode assembly and will install all
the necessary runtime components and dependencies for the x64 version of
- the System.Data.SQLite 1.0.79.0 (3.7.10) package. The Visual C++ 2010
+ the System.Data.SQLite 1.0.80.0 (3.7.11) package. The Visual C++ 2010
SP1 runtime for x64 is included. The .NET Framework 4.0 is required.
- (sha1: 48ad9c2d7413cbdd80ff53597601e65e572d3369)
+ (sha1: e2a1b48e4e743d0224f2a6607be6b067426ab34b)
- sqlite-netFx40-setup-x64-2010-1.0.79.0.exe
+ sqlite-netFx40-setup-x64-2010-1.0.80.0.exe
- (11.59 MiB)
+ (11.61 MiB)
This setup package will install all the necessary runtime components and
- dependencies for the x64 version of the System.Data.SQLite 1.0.79.0
- (3.7.10) package. The Visual C++ 2010 SP1 runtime for x64 is included.
+ dependencies for the x64 version of the System.Data.SQLite 1.0.80.0
+ (3.7.11) package. The Visual C++ 2010 SP1 runtime for x64 is included.
The .NET Framework 4.0 is required.
- (sha1: 4a8abad785ff31495e8fb137ec7fa4d9dca14062)
+ (sha1: 6e9fcd43446d88238875b8a1d83ec28e831fb0be)
@@ -200,39 +200,39 @@
- sqlite-netFx35-binary-bundle-Win32-2008-1.0.79.0.zip
+ sqlite-netFx35-binary-bundle-Win32-2008-1.0.80.0.zip
(1.61 MiB)
This binary package features the mixed-mode assembly and contains all the
- binaries for the x86 version of the System.Data.SQLite 1.0.79.0 (3.7.10)
+ binaries for the x86 version of the System.Data.SQLite 1.0.80.0 (3.7.11)
package. The Visual C++ 2008 SP1 runtime for x86 and the .NET Framework
3.5 SP1 are required.
- (sha1: 28bb5a9d453571060c608ccc158819d6c51e52af)
+ (sha1: 63240eacb4af8c507a6957e177de1a375db32e18)
- sqlite-netFx35-binary-Win32-2008-1.0.79.0.zip
+ sqlite-netFx35-binary-Win32-2008-1.0.80.0.zip
- (1.60 MiB)
+ (1.62 MiB)
This binary package contains all the binaries for the x86 version of the
- System.Data.SQLite 1.0.79.0 (3.7.10) package. The Visual C++ 2008 SP1
+ System.Data.SQLite 1.0.80.0 (3.7.11) package. The Visual C++ 2008 SP1
runtime for x86 and the .NET Framework 3.5 SP1 are required.
- (sha1: ba5309ecd3d68de8e1c6d64c0c5e1ee8521c5892)
+ (sha1: 3159f8d2df5473ea1c42c603ec7a43f9d3aaf939)
@@ -241,39 +241,39 @@
- sqlite-netFx35-binary-bundle-x64-2008-1.0.79.0.zip
+ sqlite-netFx35-binary-bundle-x64-2008-1.0.80.0.zip
- (1.67 MiB)
+ (1.68 MiB)
This binary package features the mixed-mode assembly and contains all the
- binaries for the x64 version of the System.Data.SQLite 1.0.79.0 (3.7.10)
+ binaries for the x64 version of the System.Data.SQLite 1.0.80.0 (3.7.11)
package. The Visual C++ 2008 SP1 runtime for x64 and the .NET Framework
3.5 SP1 are required.
- (sha1: e5d595ca4d0af4a8a79866cd0899d783d3c2955f)
+ (sha1: 188f4fd49c9199474e7dec951d1702869f6b7bed)
- sqlite-netFx35-binary-x64-2008-1.0.79.0.zip
+ sqlite-netFx35-binary-x64-2008-1.0.80.0.zip
- (1.67 MiB)
+ (1.69 MiB)
This binary package contains all the binaries for the x64 version of the
- System.Data.SQLite 1.0.79.0 (3.7.10) package. The Visual C++ 2008 SP1
+ System.Data.SQLite 1.0.80.0 (3.7.11) package. The Visual C++ 2008 SP1
runtime for x64 and the .NET Framework 3.5 SP1 are required.
- (sha1: da7a355d19b7649cd8804fff1b83397f29cef15a)
+ (sha1: 2d841e8f28cbbb95942afffde159b9beb8ecb9d0)
@@ -282,39 +282,39 @@
- sqlite-netFx40-binary-bundle-Win32-2010-1.0.79.0.zip
+ sqlite-netFx40-binary-bundle-Win32-2010-1.0.80.0.zip
- (1.65 MiB)
+ (1.69 MiB)
This binary package features the mixed-mode assembly and contains all the
- binaries for the x86 version of the System.Data.SQLite 1.0.79.0 (3.7.10)
+ binaries for the x86 version of the System.Data.SQLite 1.0.80.0 (3.7.11)
package. The Visual C++ 2010 SP1 runtime for x86 and the .NET Framework
4.0 are required.
- (sha1: c6076691c1ab4f98f363afe980e3c19b3e143557)
+ (sha1: f29643dd4be2876487c054ee5f2dca87e46f80a4)
- sqlite-netFx40-binary-Win32-2010-1.0.79.0.zip
+ sqlite-netFx40-binary-Win32-2010-1.0.80.0.zip
- (1.64 MiB)
+ (1.66 MiB)
This binary package contains all the binaries for the x86 version of the
- System.Data.SQLite 1.0.79.0 (3.7.10) package. The Visual C++ 2010 SP1
+ System.Data.SQLite 1.0.80.0 (3.7.11) package. The Visual C++ 2010 SP1
runtime for x86 and the .NET Framework 4.0 are required.
- (sha1: 779f3857ec43f6d67f0744363d090114236aa4aa)
+ (sha1: 0c88572b2794ca75d08c8a6ab66fe1edce9ae825)
@@ -323,39 +323,39 @@
- sqlite-netFx40-binary-bundle-x64-2010-1.0.79.0.zip
+ sqlite-netFx40-binary-bundle-x64-2010-1.0.80.0.zip
(1.68 MiB)
This binary package features the mixed-mode assembly and contains all the
- binaries for the x64 version of the System.Data.SQLite 1.0.79.0 (3.7.10)
+ binaries for the x64 version of the System.Data.SQLite 1.0.80.0 (3.7.11)
package. The Visual C++ 2010 SP1 runtime for x64 and the .NET Framework
4.0 are required.
- (sha1: da37bb787291e6b9d14f2f80bfe85539d9ff2864)
+ (sha1: 32b30e7430d92ce7192ce83451e8a9862f1e5d97)
- sqlite-netFx40-binary-x64-2010-1.0.79.0.zip
+ sqlite-netFx40-binary-x64-2010-1.0.80.0.zip
(1.67 MiB)
This binary package contains all the binaries for the x64 version of the
- System.Data.SQLite 1.0.79.0 (3.7.10) package. The Visual C++ 2010 SP1
+ System.Data.SQLite 1.0.80.0 (3.7.11) package. The Visual C++ 2010 SP1
runtime for x64 and the .NET Framework 4.0 are required.
- (sha1: e24444efe5ff214bf9a82a1ce0056193cea2d1c0)
+ (sha1: 81d53e5b515b8906b875d994c0d8a60224b842fc)
@@ -364,40 +364,40 @@
- sqlite-netFx35-static-binary-bundle-Win32-2008-1.0.79.0.zip
+ sqlite-netFx35-static-binary-bundle-Win32-2008-1.0.80.0.zip
- (1.82 MiB)
+ (1.88 MiB)
This binary package features the mixed-mode assembly and contains all the
- binaries for the x86 version of the System.Data.SQLite 1.0.79.0 (3.7.10)
+ binaries for the x86 version of the System.Data.SQLite 1.0.80.0 (3.7.11)
package. The Visual C++ 2008 SP1 runtime for x86 is statically linked.
The .NET Framework 3.5 SP1 is required.
- (sha1: 3b86995edf96216f496ee9800cb7c6a9ae435f8f)
+ (sha1: 62e17ad898954b884c78f331f03376dfa7cb15c2)
- sqlite-netFx35-static-binary-Win32-2008-1.0.79.0.zip
+ sqlite-netFx35-static-binary-Win32-2008-1.0.80.0.zip
- (1.82 MiB)
+ (1.83 MiB)
This binary package contains all the binaries for the x86 version of the
- System.Data.SQLite 1.0.79.0 (3.7.10) package. The Visual C++ 2008 SP1
+ System.Data.SQLite 1.0.80.0 (3.7.11) package. The Visual C++ 2008 SP1
runtime for x86 is statically linked. The .NET Framework 3.5 SP1 is
required.
- (sha1: b450fdfe98591c2ba590207cdb802a552c57f4a6)
+ (sha1: aa5d46057977a99e1eb275526bf0b5baea087026)
@@ -406,40 +406,40 @@
- sqlite-netFx35-static-binary-bundle-x64-2008-1.0.79.0.zip
+ sqlite-netFx35-static-binary-bundle-x64-2008-1.0.80.0.zip
- (1.85 MiB)
+ (1.89 MiB)
This binary package features the mixed-mode assembly and contains all the
- binaries for the x64 version of the System.Data.SQLite 1.0.79.0 (3.7.10)
+ binaries for the x64 version of the System.Data.SQLite 1.0.80.0 (3.7.11)
package. The Visual C++ 2008 SP1 runtime for x64 is statically linked.
The .NET Framework 3.5 SP1 is required.
- (sha1: e0d696f9f18a1993b796d3572372c84fee543300)
+ (sha1: 4a3863c15848fae10c4521c6c30c630f1a5e07d4)
- sqlite-netFx35-static-binary-x64-2008-1.0.79.0.zip
+ sqlite-netFx35-static-binary-x64-2008-1.0.80.0.zip
(1.84 MiB)
This binary package contains all the binaries for the x64 version of the
- System.Data.SQLite 1.0.79.0 (3.7.10) package. The Visual C++ 2008 SP1
+ System.Data.SQLite 1.0.80.0 (3.7.11) package. The Visual C++ 2008 SP1
runtime for x64 is statically linked. The .NET Framework 3.5 SP1 is
required.
- (sha1: 032185157560dc169036f58d9f2975471548cfd9)
+ (sha1: 098caf7d4adab54d8c20cd0bfb5553b353b236c4)
@@ -448,39 +448,39 @@
- sqlite-netFx40-static-binary-bundle-Win32-2010-1.0.79.0.zip
+ sqlite-netFx40-static-binary-bundle-Win32-2010-1.0.80.0.zip
- (1.87 MiB)
+ (1.89 MiB)
This binary package features the mixed-mode assembly and contains all the
- binaries for the x86 version of the System.Data.SQLite 1.0.79.0 (3.7.10)
+ binaries for the x86 version of the System.Data.SQLite 1.0.80.0 (3.7.11)
package. The Visual C++ 2010 SP1 runtime for x86 is statically linked.
The .NET Framework 4.0 is required.
- (sha1: 04e6b299f802de1520ccbfafc4a67ce1862e2fc3)
+ (sha1: ce97513d2fa7ba9b7dec0f3c45c58b0ba3e749c3)
- sqlite-netFx40-static-binary-Win32-2010-1.0.79.0.zip
+ sqlite-netFx40-static-binary-Win32-2010-1.0.80.0.zip
- (1.86 MiB)
+ (1.88 MiB)
This binary package contains all the binaries for the x86 version of the
- System.Data.SQLite 1.0.79.0 (3.7.10) package. The Visual C++ 2010 SP1
+ System.Data.SQLite 1.0.80.0 (3.7.11) package. The Visual C++ 2010 SP1
runtime for x86 is statically linked. The .NET Framework 4.0 is required.
- (sha1: 2b76be35643b92128f67b2b02c8b4d0ef78aa7da)
+ (sha1: 50acae4e4f60ecc4e9a992191c2e8df47d6145e0)
@@ -489,39 +489,39 @@
- sqlite-netFx40-static-binary-bundle-x64-2010-1.0.79.0.zip
+ sqlite-netFx40-static-binary-bundle-x64-2010-1.0.80.0.zip
(1.87 MiB)
This binary package features the mixed-mode assembly and contains all the
- binaries for the x64 version of the System.Data.SQLite 1.0.79.0 (3.7.10)
+ binaries for the x64 version of the System.Data.SQLite 1.0.80.0 (3.7.11)
package. The Visual C++ 2010 SP1 runtime for x64 is statically linked.
The .NET Framework 4.0 is required.
- (sha1: f4d904accd7412f0980b2bcac9576a3af4c63930)
+ (sha1: 9b412b19857bf123683e15dac3fa89bdabf59bc5)
- sqlite-netFx40-static-binary-x64-2010-1.0.79.0.zip
+ sqlite-netFx40-static-binary-x64-2010-1.0.80.0.zip
(1.86 MiB)
This binary package contains all the binaries for the x64 version of the
- System.Data.SQLite 1.0.79.0 (3.7.10) package. The Visual C++ 2010 SP1
+ System.Data.SQLite 1.0.80.0 (3.7.11) package. The Visual C++ 2010 SP1
runtime for x64 is statically linked. The .NET Framework 4.0 is required.
- (sha1: a04f7718eb947d40f1201ac8bee3433a38dd6d08)
+ (sha1: 4e3bcc6a28813fa57bfd6b63a85406a3beb0de79)
@@ -530,21 +530,21 @@
- sqlite-netFx35-binary-PocketPC-2008-1.0.79.0.zip
+ sqlite-netFx35-binary-PocketPC-2008-1.0.80.0.zip
- (0.81 MiB)
+ (0.82 MiB)
This binary package contains all the binaries for the PocketPC version of
- the System.Data.SQLite 1.0.79.0 (3.7.10) package. The .NET Compact
+ the System.Data.SQLite 1.0.80.0 (3.7.11) package. The .NET Compact
Framework 3.5 is required.
- (sha1: 8b0517a3468099bcdeb8bdb6de1395c4b5dfae43)
+ (sha1: 14f204b9a842623be3a514372b810d3eb64edae0)
@@ -560,12 +560,12 @@
(3.2 MiB)
Legacy versions, as well as the original support forums, may still be
- found at [http://sqlite.phxsoftware.com/], though there have been no updates
- to this version since April of 2010.
+ found at [http://sqlite.phxsoftware.com/], though there have been no
+ updates to this version since April of 2010.
Build Product Names
@@ -600,31 +600,35 @@
statically linked to the Visual C++ runtime. Template (9) is used for
unofficial pre-release "snapshots" of source code.
Canonical Source Code
+
+
+
+
+
+
Verify All Release Packages
+
+
+
+ If errors are generated, the file "<root>\Setup\verify.lst"
+ may need to be updated to account for the files that have been added and/or
+ removed from the release archives since the previous release.
+ Update Downloads Page