System.Data.SQLite

Login
This project makes use of Eagle, provided by Mistachkin Systems.
Eagle: Secure Software Automation

System.Data.SQLite Downloads

Design-Time Components for Visual Studio Setup Packages
The setup packages, which contain the Design-Time Components for Visual Studio are no longer officially supported and have now been moved to their own download page.
Runtime Library Notes
All downloadable packages on this web page that do not include the word "static" in their file name require the appropriate version (e.g. 2005, 2008, 2010, 2012, 2013, 2015, 2017) of the Microsoft Visual C++ Runtime Library, to be successfully installed on the target machine, prior to making use of the executables contained therein.
Latest Microsoft Visual C++ Runtime Library Downloads
For detailed information about the latest downloads for each Microsoft Visual C++ Runtime Library release, please refer to the following page:
  Latest Supported Visual C++ Downloads  
Support Notes - Downloadable Packages
This page contains all supported downloadable packages (e.g. sources, binaries, etc) for the current release version of the official "System.Data.SQLite" project. This page and the associated NuGet packages are the only official distribution points for these downloadable packages. If any of the downloadable packages are obtained elsewhere, it is very important to compare their SHA1 hashes to the corresponding hashes listed below in order to make sure the contained files are the same.
Support Notes - Other Projects
There are several other projects, with widely varying levels of support and compatibility, known to use the similar names. At least one of those projects is an unofficial fork of the legacy 1.0.66.0 release, modified (by a third-party) to work with Visual Studio 2010 (or higher). Only the software contained on this page is directly supported by the maintainers of this project (i.e. the SQLite Development Team) as we do not necessarily have any knowledge of the other projects that use the same (or a similar) name. That being said, if a particular question is related to the core SQLite native library itself, one of the SQLite support options is probably the best way to get an answer.
Windows Embedded Compact
The Precompiled Binaries for Windows CE (.NET Compact Framework) section of this page contains several binary packages for Windows Embedded Compact 2013. Further information on integrating SQLite into Windows Embedded Compact 2013 can be found at the following web site:
  SQLite for Windows Embedded Compact 2013  
Release Notes
The "release notes", which contain lists of notable changes associated with each officially released version, is available on the News page.
Package Types
There are a wide variety of downloadable packages on this page. Each of them is designed to meet the requirements of a particular development and/or deployment scenario.

The first step is to determine if the package is to be installed (or used) on a developer machine or a customer machine.
 
  • The source packages are intended primarily for people interested in studying the source code that corresponds to a particular release version of the project. The source packages contain no binaries. Those interested in studying the latest source code and/or tracking the unreleased changes should consider accessing the Fossil repository instead.

  • The binary packages are intended to be used by developers in order to obtain the assembly binaries necessary for development and deployment of their applications onto customer machines via XCOPY deployment.
 
All the "bundle" packages contain the "System.Data.SQLite.dll" mixed-mode assembly. These packages should only be used in cases where the assembly binary must be deployed to the Global Assembly Cache for some reason (e.g. to support some legacy application on customer machines).

All the "static" packages contain either native or mixed-mode assembly binaries linked statically to the appropriate version of the Visual C++ runtime. Typically, these packages are used in cases where customer machines may not have the necessary version of the Visual C++ runtime installed and it cannot be installed due to limited privileges.

The next step is to identify the version of the .NET Framework being targeted by the application. Generally, assembly binaries linked against the .NET Framework 2.0 (or the .NET Framework 3.5) will work with the .NET Framework 4.0 (or higher); however, this is less than ideal. Furthermore, assemblies linked against the .NET Framework 4.0 (or higher) cannot be loaded by any versions of the .NET Framework prior to 4.0.
Using Native Library Pre-Loading
The final step is to identify the target processor architecture on both the development and customer machines. Generally, x86 binaries will work on an x64 machine running Windows (using WoW64). However, there is a problem when using managed code. If the executable that starts the process consists entirely of managed code, it will run with the native processor architecture of the machine, which will be x64 on an x64 machine. Later on, this will cause assemblies containing any native code compiled for x86 (e.g. the "System.Data.SQLite.dll" mixed-mode assembly, the "SQLite.Interop.dll" native interop assembly, or the "sqlite3.dll" native library) to fail to load, typically resulting in a BadImageFormatException being thrown.

If the development and customer machines may have different processor architectures, more than one binary package may be required. For this situation, using the native library pre-loading feature is highly recommended. It is available as of version 1.0.80.0 and enabled by default. In order to take advantage of this feature, the separate managed and interop assemblies must be used with XCOPY deployment (i.e. this feature is not supported by the mixed-mode assembly, nor when the assembly is deployed to the global assembly cache), resulting in an application deployment that looks something like this:
 
  • <bin>\App.exe (optional, managed-only application executable assembly)
  • <bin>\App.dll (optional, managed-only application library assembly)
  • <bin>\System.Data.SQLite.dll (required, managed-only core assembly)
  • <bin>\System.Data.SQLite.Linq.dll (optional, managed-only LINQ assembly)
  • <bin>\System.Data.SQLite.EF6.dll (optional, managed-only EF6 assembly)
  • <bin>\x86\SQLite.Interop.dll (required, x86 native interop assembly)
  • <bin>\x64\SQLite.Interop.dll (required, x64 native interop assembly)
 
The string "<bin>" above represents the directory where the application binaries are to be deployed on the target machine. With the native library pre-loading feature enabled and the application deployment shown above, the System.Data.SQLite managed-only assembly will attempt to automatically detect the processor architecture of the current process and pre-load the appropriate native library.
Advanced Configuration Settings
If native library pre-loading feature does not work properly in your environment, it can be disabled by setting the "No_PreLoadSQLite" environment variable (i.e. to anything) prior to loading and/or using the System.Data.SQLite assembly. There are several more environment variables that can be used to influence the behavior of the native library pre-loading feature, documented here.

Use of environment variables for configuration settings is not supported by the .NET Compact Framework builds of System.Data.SQLite, due to limitations imposed by the platform itself.

Alternatively, as of version 1.0.91.0, all configuration settings can be specified via an optional XML configuration file. Using the XML configuration file when the primary System.Data.SQLite assembly ("System.Data.SQLite.dll") is being executed from the Global Assembly Cache is unsupported.

For each configuration setting, the associated environment variable value, if present, will override the value specified via the XML configuration file.

For the full .NET Framework, the XML configuration file must be named "System.Data.SQLite.dll.config" and it must be present in the base directory for the application domain or the directory containing the primary System.Data.SQLite assembly as reported by its location property; otherwise, it will be ignored.

For the .NET Compact Framework, the XML configuration file must be named "System.Data.SQLite.dll.config" and it must be present in the directory containing the primary System.Data.SQLite assembly; otherwise, it will be ignored.
Deployment Guidelines
To summarize the above:
 
  • Using XCOPY deployment in conjunction with the native library pre-loading feature, especially for customer machines, is highly recommended.

  • Using the Global Assembly Cache (at all) is not recommended; therefore, the "bundle" packages should be avoided unless deemed absolutely necessary.

  • Using the "static" assembly binaries on development machines is not recommended; therefore, the "static" packages should be avoided if all the target machines already have the Visual C++ runtime installed or it can be easily deployed beforehand.

  • Choosing the package matching the version of the .NET Framework being targeted is highly recommended.

  • Choosing the package matching the target processor architecture (for both development and customer machines) is almost certainly required for proper operation. Using the native library pre-loading feature should help with this.
 

List of Release Packages

Source Code
  sqlite-netFx-source-1.0.118.0.zip
(7.96 MiB)
This ZIP archive contains all current source code for System.Data.SQLite 1.0.118.0 (3.42.0) combined into a single archive file.
(sha1: b71cac78af1916602a3da81dda27ce3a6e77810b)
  sqlite-netFx-full-source-1.0.118.0.zip
(21.03 MiB)
This ZIP archive contains all current source code for System.Data.SQLite 1.0.118.0 (3.42.0) and the extra files needed to run the unit test suite, combined into a single archive file.
(sha1: b71927d1bc45af3ff90081f4d9767b08e067c8ac)
Precompiled Binaries for 32-bit Windows (.NET Framework 2.0 SP2)
  sqlite-netFx20-binary-bundle-Win32-2005-1.0.118.0.zip
(2.17 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.118.0 (3.42.0) package. The Visual C++ 2005 SP1 runtime for x86 and the .NET Framework 2.0 SP2 are required.
(sha1: c102d3dc1042e13b23cff0f3f1bcc695fc089eeb)
  sqlite-netFx20-binary-Win32-2005-1.0.118.0.zip
(2.16 MiB)
This binary package contains all the binaries for the x86 version of the System.Data.SQLite 1.0.118.0 (3.42.0) package. The Visual C++ 2005 SP1 runtime for x86 and the .NET Framework 2.0 SP2 are required.
(sha1: fcd29236b4a1dc88fd8e5ebb3b072954c0d2dae2)
Precompiled Binaries for 64-bit Windows (.NET Framework 2.0 SP2)
  sqlite-netFx20-binary-bundle-x64-2005-1.0.118.0.zip
(2.48 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.118.0 (3.42.0) package. The Visual C++ 2005 SP1 runtime for x64 and the .NET Framework 2.0 SP2 are required.
(sha1: b39253eb41c86688643aa6977f2dc5ceb3bee6cf)
  sqlite-netFx20-binary-x64-2005-1.0.118.0.zip
(2.47 MiB)
This binary package contains all the binaries for the x64 version of the System.Data.SQLite 1.0.118.0 (3.42.0) package. The Visual C++ 2005 SP1 runtime for x64 and the .NET Framework 2.0 SP2 are required.
(sha1: 3393b001886358954374f14bc6151dc1c9337976)
Precompiled Binaries for 32-bit Windows (.NET Framework 3.5 SP1)
  sqlite-netFx35-binary-bundle-Win32-2008-1.0.118.0.zip
(2.62 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.118.0 (3.42.0) package. The Visual C++ 2008 SP1 runtime for x86 and the .NET Framework 3.5 SP1 are required.
(sha1: aec2292322d2a15cca0c6889b63e44d15432fade)
  sqlite-netFx35-binary-Win32-2008-1.0.118.0.zip
(2.61 MiB)
This binary package contains all the binaries for the x86 version of the System.Data.SQLite 1.0.118.0 (3.42.0) package. The Visual C++ 2008 SP1 runtime for x86 and the .NET Framework 3.5 SP1 are required.
(sha1: 459fbfcc5a9b18a5ac0e18075144adea79421416)
Precompiled Binaries for 64-bit Windows (.NET Framework 3.5 SP1)
  sqlite-netFx35-binary-bundle-x64-2008-1.0.118.0.zip
(2.73 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.118.0 (3.42.0) package. The Visual C++ 2008 SP1 runtime for x64 and the .NET Framework 3.5 SP1 are required.
(sha1: 3c66fec04965def1ceadbc16d300328c32ccd969)
  sqlite-netFx35-binary-x64-2008-1.0.118.0.zip
(2.73 MiB)
This binary package contains all the binaries for the x64 version of the System.Data.SQLite 1.0.118.0 (3.42.0) package. The Visual C++ 2008 SP1 runtime for x64 and the .NET Framework 3.5 SP1 are required.
(sha1: 0daaa2e19e8a1bb0d0534ea6c099d7c93f193aa0)
Precompiled Binaries for 32-bit Windows (.NET Framework 4.0)
  sqlite-netFx40-binary-bundle-Win32-2010-1.0.118.0.zip
(2.86 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.118.0 (3.42.0) package. The Visual C++ 2010 SP1 runtime for x86 and the .NET Framework 4.0 are required.
(sha1: 4cbae675aa5e7b0518e198a7bacee409e8521725)
  sqlite-netFx40-binary-Win32-2010-1.0.118.0.zip
(2.86 MiB)
This binary package contains all the binaries for the x86 version of the System.Data.SQLite 1.0.118.0 (3.42.0) package. The Visual C++ 2010 SP1 runtime for x86 and the .NET Framework 4.0 are required.
(sha1: 07acc3f97e283dcf1e86925ccc71b0df5c8c6f4e)
Precompiled Binaries for 64-bit Windows (.NET Framework 4.0)
  sqlite-netFx40-binary-bundle-x64-2010-1.0.118.0.zip
(2.91 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.118.0 (3.42.0) package. The Visual C++ 2010 SP1 runtime for x64 and the .NET Framework 4.0 are required.
(sha1: 99370b0ce2928855d4f5a4682c9d2f87246a0c82)
  sqlite-netFx40-binary-x64-2010-1.0.118.0.zip
(2.90 MiB)
This binary package contains all the binaries for the x64 version of the System.Data.SQLite 1.0.118.0 (3.42.0) package. The Visual C++ 2010 SP1 runtime for x64 and the .NET Framework 4.0 are required.
(sha1: 92b02b8416b598cf769aed2061a8f1a04b2ac33c)
Precompiled Binaries for 32-bit Windows (.NET Framework 4.5)
  sqlite-netFx45-binary-bundle-Win32-2012-1.0.118.0.zip
(2.75 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.118.0 (3.42.0) package. The Visual C++ 2012 Update 4 runtime for x86 and the .NET Framework 4.5 are required.
(sha1: 454bb1dc4f4995e36a8a0d9d90ad140a3d621c8d)
  sqlite-netFx45-binary-Win32-2012-1.0.118.0.zip
(2.81 MiB)
This binary package contains all the binaries for the x86 version of the System.Data.SQLite 1.0.118.0 (3.42.0) package. The Visual C++ 2012 Update 4 runtime for x86 and the .NET Framework 4.5 are required.
(sha1: a2b4d44cafe4dd4f03c2900d8039307c7c0e4585)
Precompiled Binaries for 64-bit Windows (.NET Framework 4.5)
  sqlite-netFx45-binary-bundle-x64-2012-1.0.118.0.zip
(2.80 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.118.0 (3.42.0) package. The Visual C++ 2012 Update 4 runtime for x64 and the .NET Framework 4.5 are required.
(sha1: fd86b916bfcf4ac78b8fb8b35a07c527b2c912a3)
  sqlite-netFx45-binary-x64-2012-1.0.118.0.zip
(2.90 MiB)
This binary package contains all the binaries for the x64 version of the System.Data.SQLite 1.0.118.0 (3.42.0) package. The Visual C++ 2012 Update 4 runtime for x64 and the .NET Framework 4.5 are required.
(sha1: 3ef1532e1457626efb5b411973ac81f7e548c03b)
Precompiled Binaries for 32-bit Windows (.NET Framework 4.5.1)
  sqlite-netFx451-binary-bundle-Win32-2013-1.0.118.0.zip
(2.76 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.118.0 (3.42.0) package. The Visual C++ 2013 Update 2 runtime for x86 and the .NET Framework 4.5.1 are required.
(sha1: 6814b497497a75e4bf615f517223baeb2ecdbcbd)
  sqlite-netFx451-binary-Win32-2013-1.0.118.0.zip
(2.82 MiB)
This binary package contains all the binaries for the x86 version of the System.Data.SQLite 1.0.118.0 (3.42.0) package. The Visual C++ 2013 Update 2 runtime for x86 and the .NET Framework 4.5.1 are required.
(sha1: bc95beea461b89a97a2d74948346d0c7e0c49a92)
Precompiled Binaries for 64-bit Windows (.NET Framework 4.5.1)
  sqlite-netFx451-binary-bundle-x64-2013-1.0.118.0.zip
(2.81 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.118.0 (3.42.0) package. The Visual C++ 2013 Update 2 runtime for x64 and the .NET Framework 4.5.1 are required.
(sha1: b34ff3b2c186c01c85e7596b51d69694fdab9e16)
  sqlite-netFx451-binary-x64-2013-1.0.118.0.zip
(2.91 MiB)
This binary package contains all the binaries for the x64 version of the System.Data.SQLite 1.0.118.0 (3.42.0) package. The Visual C++ 2013 Update 2 runtime for x64 and the .NET Framework 4.5.1 are required.
(sha1: 7320f6e605b7e238ae775f60bf2354e3c5425bd0)
Precompiled Binaries for 32-bit Windows (.NET Framework 4.6)
  sqlite-netFx46-binary-bundle-Win32-2015-1.0.118.0.zip
(3.48 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.118.0 (3.42.0) package. The Visual C++ 2015 Update 3 runtime for x86 and the .NET Framework 4.6 are required.
(sha1: 298e7116ef89ecea73e0c75fd0d5dfa3c027b3ff)
  sqlite-netFx46-binary-Win32-2015-1.0.118.0.zip
(3.70 MiB)
This binary package contains all the binaries for the x86 version of the System.Data.SQLite 1.0.118.0 (3.42.0) package. The Visual C++ 2015 Update 3 runtime for x86 and the .NET Framework 4.6 are required.
(sha1: fe08afe36a5165863b3b0c9e12f456a7beb8301e)
Precompiled Binaries for 64-bit Windows (.NET Framework 4.6)
  sqlite-netFx46-binary-bundle-x64-2015-1.0.118.0.zip
(3.53 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.118.0 (3.42.0) package. The Visual C++ 2015 Update 3 runtime for x64 and the .NET Framework 4.6 are required.
(sha1: 676c8cae0a82db4329e7a109fa10c55ebc18bef1)
  sqlite-netFx46-binary-x64-2015-1.0.118.0.zip
(3.83 MiB)
This binary package contains all the binaries for the x64 version of the System.Data.SQLite 1.0.118.0 (3.42.0) package. The Visual C++ 2015 Update 3 runtime for x64 and the .NET Framework 4.6 are required.
(sha1: c7abe212392c752b0f1b140e0db6859c466501f1)
Precompiled Binaries for Mono on POSIX (.NET Framework 4.5.1)
  sqlite-netFx451-binary-Mono-2013-1.0.118.0.zip
(1.33 MiB)
This binary package contains all the managed binaries for the Mono version of the System.Data.SQLite 1.0.118.0 (3.42.0) package. The Mono runtime (4.2.3.4 or higher) is required.
(sha1: 98707bd66800c06114d06558511eb5b77f19f980)
Precompiled Binaries for the .NET Standard 2.0 (.NET Core 2.0)
  sqlite-netStandard20-binary-1.0.118.0.zip
(0.32 MiB)
This binary package contains all the managed binaries for the .NET Standard 2.0 version of the System.Data.SQLite 1.0.118.0 (3.42.0) package. The .NET Core runtime (2.0 or higher) is required.
(sha1: ffa49bc1cec6c74482796e4f786162bd7fa6cab9)
Precompiled Binaries for the .NET Standard 2.1 (.NET Core 3.0)
  sqlite-netStandard21-binary-1.0.118.0.zip
(0.71 MiB)
This binary package contains all the managed binaries for the .NET Standard 2.1 version of the System.Data.SQLite 1.0.118.0 (3.42.0) package. The .NET Core runtime (3.0 or higher) is required.
(sha1: 95871b773c65f8a1e74d0fc5c2f443911264e100)
Precompiled Statically-Linked Binaries for 32-bit Windows (.NET Framework 2.0 SP2)
  sqlite-netFx20-static-binary-bundle-Win32-2005-1.0.118.0.zip
(2.36 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.118.0 (3.42.0) package. The Visual C++ 2005 SP1 runtime for x86 is statically linked. The .NET Framework 2.0 SP2 is required.
(sha1: 7bbb3ffb9cc391c6b463dd545ed61ab3d80cb15e)
  sqlite-netFx20-static-binary-Win32-2005-1.0.118.0.zip
(2.36 MiB)
This binary package contains all the binaries for the x86 version of the System.Data.SQLite 1.0.118.0 (3.42.0) package. The Visual C++ 2005 SP1 runtime for x86 is statically linked. The .NET Framework 2.0 SP2 is required.
(sha1: 47e1ef0afb118060443436f1ebab5033191dba1d)
Precompiled Statically-Linked Binaries for 64-bit Windows (.NET Framework 2.0 SP2)
  sqlite-netFx20-static-binary-bundle-x64-2005-1.0.118.0.zip
(2.62 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.118.0 (3.42.0) package. The Visual C++ 2005 SP1 runtime for x64 is statically linked. The .NET Framework 2.0 SP2 is required.
(sha1: 36b9fd78bc740d7c8aea8016642bd9ab96aaed6a)
  sqlite-netFx20-static-binary-x64-2005-1.0.118.0.zip
(2.61 MiB)
This binary package contains all the binaries for the x64 version of the System.Data.SQLite 1.0.118.0 (3.42.0) package. The Visual C++ 2005 SP1 runtime for x64 is statically linked. The .NET Framework 2.0 SP2 is required.
(sha1: 3e3f9b3e4692337a656d5c6c04c919cdd8f8e89a)
Precompiled Statically-Linked Binaries for 32-bit Windows (.NET Framework 3.5 SP1)
  sqlite-netFx35-static-binary-bundle-Win32-2008-1.0.118.0.zip
(2.82 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.118.0 (3.42.0) package. The Visual C++ 2008 SP1 runtime for x86 is statically linked. The .NET Framework 3.5 SP1 is required.
(sha1: 3c68bd551c3d6ff363908388ece0c83cb4292f06)
  sqlite-netFx35-static-binary-Win32-2008-1.0.118.0.zip
(2.81 MiB)
This binary package contains all the binaries for the x86 version of the System.Data.SQLite 1.0.118.0 (3.42.0) package. The Visual C++ 2008 SP1 runtime for x86 is statically linked. The .NET Framework 3.5 SP1 is required.
(sha1: a75124380a8e31d3c868af129508a1d065ca5487)
Precompiled Statically-Linked Binaries for 64-bit Windows (.NET Framework 3.5 SP1)
  sqlite-netFx35-static-binary-bundle-x64-2008-1.0.118.0.zip
(2.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.118.0 (3.42.0) package. The Visual C++ 2008 SP1 runtime for x64 is statically linked. The .NET Framework 3.5 SP1 is required.
(sha1: 18e261e601e9da1337a70fef3b69a61e0eeba883)
  sqlite-netFx35-static-binary-x64-2008-1.0.118.0.zip
(2.89 MiB)
This binary package contains all the binaries for the x64 version of the System.Data.SQLite 1.0.118.0 (3.42.0) package. The Visual C++ 2008 SP1 runtime for x64 is statically linked. The .NET Framework 3.5 SP1 is required.
(sha1: 14475ec77db9d3657b07289eb4468f9f6badcc6d)
Precompiled Statically-Linked Binaries for 32-bit Windows (.NET Framework 4.0)
  sqlite-netFx40-static-binary-bundle-Win32-2010-1.0.118.0.zip
(3.06 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.118.0 (3.42.0) package. The Visual C++ 2010 SP1 runtime for x86 is statically linked. The .NET Framework 4.0 is required.
(sha1: b75bb8220923d498bef8e9a7ae2084641a9943ae)
  sqlite-netFx40-static-binary-Win32-2010-1.0.118.0.zip
(3.05 MiB)
This binary package contains all the binaries for the x86 version of the System.Data.SQLite 1.0.118.0 (3.42.0) package. The Visual C++ 2010 SP1 runtime for x86 is statically linked. The .NET Framework 4.0 is required.
(sha1: cae3fa842b32110e59f49522d51c52f0ad39b57e)
Precompiled Statically-Linked Binaries for 64-bit Windows (.NET Framework 4.0)
  sqlite-netFx40-static-binary-bundle-x64-2010-1.0.118.0.zip
(3.08 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.118.0 (3.42.0) package. The Visual C++ 2010 SP1 runtime for x64 is statically linked. The .NET Framework 4.0 is required.
(sha1: e1a32810d03e365df809a6a27363a2426ad2cbbb)
  sqlite-netFx40-static-binary-x64-2010-1.0.118.0.zip
(3.07 MiB)
This binary package contains all the binaries for the x64 version of the System.Data.SQLite 1.0.118.0 (3.42.0) package. The Visual C++ 2010 SP1 runtime for x64 is statically linked. The .NET Framework 4.0 is required.
(sha1: f63b1434d196a4280cdbe984b30d749871225e90)
Precompiled Statically-Linked Binaries for 32-bit Windows (.NET Framework 4.5)
  sqlite-netFx45-static-binary-bundle-Win32-2012-1.0.118.0.zip
(3.07 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.118.0 (3.42.0) package. The Visual C++ 2012 Update 4 runtime for x86 is statically linked. The .NET Framework 4.5 is required.
(sha1: d7895eb5bbc041ee5ee780f59b32ac6567f3463a)
  sqlite-netFx45-static-binary-Win32-2012-1.0.118.0.zip
(3.13 MiB)
This binary package contains all the binaries for the x86 version of the System.Data.SQLite 1.0.118.0 (3.42.0) package. The Visual C++ 2012 Update 4 runtime for x86 is statically linked. The .NET Framework 4.5 is required.
(sha1: 7e07b5ce2d7f04b7235e097d4b6ad2b0cdf168a5)
Precompiled Statically-Linked Binaries for 64-bit Windows (.NET Framework 4.5)
  sqlite-netFx45-static-binary-bundle-x64-2012-1.0.118.0.zip
(3.06 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.118.0 (3.42.0) package. The Visual C++ 2012 Update 4 runtime for x64 is statically linked. The .NET Framework 4.5 is required.
(sha1: ac7465c4aea226ce94f748febfe03fb96942178c)
  sqlite-netFx45-static-binary-x64-2012-1.0.118.0.zip
(3.16 MiB)
This binary package contains all the binaries for the x64 version of the System.Data.SQLite 1.0.118.0 (3.42.0) package. The Visual C++ 2012 Update 4 runtime for x64 is statically linked. The .NET Framework 4.5 is required.
(sha1: deed8dadba4f8570624ebdd19f688ebe0c9c5d00)
Precompiled Statically-Linked Binaries for 32-bit Windows (.NET Framework 4.5.1)
  sqlite-netFx451-static-binary-bundle-Win32-2013-1.0.118.0.zip
(3.10 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.118.0 (3.42.0) package. The Visual C++ 2013 Update 2 runtime for x86 is statically linked. The .NET Framework 4.5.1 is required.
(sha1: 986e2d90f2f295b6ade17e24290cb1315ed3a8d0)
  sqlite-netFx451-static-binary-Win32-2013-1.0.118.0.zip
(3.16 MiB)
This binary package contains all the binaries for the x86 version of the System.Data.SQLite 1.0.118.0 (3.42.0) package. The Visual C++ 2013 Update 2 runtime for x86 is statically linked. The .NET Framework 4.5.1 is required.
(sha1: 3b87ea27d694fa66e4500a90e069d643c56577f2)
Precompiled Statically-Linked Binaries for 64-bit Windows (.NET Framework 4.5.1)
  sqlite-netFx451-static-binary-bundle-x64-2013-1.0.118.0.zip
(3.11 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.118.0 (3.42.0) package. The Visual C++ 2013 Update 2 runtime for x64 is statically linked. The .NET Framework 4.5.1 is required.
(sha1: cdf01831f9b5f7d05d156d08756c955cfc778e7f)
  sqlite-netFx451-static-binary-x64-2013-1.0.118.0.zip
(3.20 MiB)
This binary package contains all the binaries for the x64 version of the System.Data.SQLite 1.0.118.0 (3.42.0) package. The Visual C++ 2013 Update 2 runtime for x64 is statically linked. The .NET Framework 4.5.1 is required.
(sha1: b9c5ec046bf06c7031b4822425139b89aa99563e)
Precompiled Statically-Linked Binaries for 32-bit Windows (.NET Framework 4.6)
  sqlite-netFx46-static-binary-bundle-Win32-2015-1.0.118.0.zip
(4.01 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.118.0 (3.42.0) package. The Visual C++ 2015 Update 3 runtime for x86 is statically linked. The .NET Framework 4.6 is required.
(sha1: 2dd4c3d26ca513991baf03273d5c88a3359a05df)
  sqlite-netFx46-static-binary-Win32-2015-1.0.118.0.zip
(4.23 MiB)
This binary package contains all the binaries for the x86 version of the System.Data.SQLite 1.0.118.0 (3.42.0) package. The Visual C++ 2015 Update 3 runtime for x86 is statically linked. The .NET Framework 4.6 is required.
(sha1: ba568cd846c2f38d93b9c26786df5d0560696076)
Precompiled Statically-Linked Binaries for 64-bit Windows (.NET Framework 4.6)
  sqlite-netFx46-static-binary-bundle-x64-2015-1.0.118.0.zip
(4.01 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.118.0 (3.42.0) package. The Visual C++ 2015 Update 3 runtime for x64 is statically linked. The .NET Framework 4.6 is required.
(sha1: ba332cf6bf2d35de21da536bb464945ce6b1c9ae)
  sqlite-netFx46-static-binary-x64-2015-1.0.118.0.zip
(4.32 MiB)
This binary package contains all the binaries for the x64 version of the System.Data.SQLite 1.0.118.0 (3.42.0) package. The Visual C++ 2015 Update 3 runtime for x64 is statically linked. The .NET Framework 4.6 is required.
(sha1: fa6212548ce82ad27daa59d223404ec8c08825ea)
Precompiled Binaries for Windows CE (.NET Compact Framework)
  sqlite-netFx35-binary-PocketPC-ARM-2008-1.0.118.0.zip
(1.70 MiB)
This binary package contains all the binaries for the PocketPC version of the System.Data.SQLite 1.0.118.0 (3.42.0) package. The included native binaries should work on all supported ARM versions of Windows CE prior to Windows Embedded Compact 2013. The .NET Compact Framework 3.5 is required.
(sha1: 4f62797e75f916b848854a37b437131e31b228da)
  sqlite-netFx39-binary-WinCE-ARM-2012-1.0.118.0.zip
(1.87 MiB)
This binary package contains all the binaries for the Windows Embedded Compact 2013 (ARM) version of the System.Data.SQLite 1.0.118.0 (3.42.0) package. The .NET Compact Framework 3.9 is required.
(sha1: 8c4163b7d5965e7e1e7b9af89401964ca1158342)
  sqlite-netFx39-binary-WinCE-x86-2012-1.0.118.0.zip
(1.92 MiB)
This binary package contains all the binaries for the Windows Embedded Compact 2013 (x86) version of the System.Data.SQLite 1.0.118.0 (3.42.0) package. The .NET Compact Framework 3.9 is required.
(sha1: 5e216bd4c99c86a4f2eadf4effcacf2345cdf23a)
Official NuGet Packages
Generally, the official NuGet packages should be obtained from the NuGet Gallery; however, they are also included here as "local downloads" for reference. They should be absolutely identical to those listed on the NuGet Gallery with the same name and version. The SHA1 hashes listed below may be used for comparison purposes.
  System.Data.SQLite.1.0.118.0.nupkg
(0.00 MiB)
This NuGet package includes all the binaries for both the x86 and x64 versions of System.Data.SQLite 1.0.118.0 (3.42.0). The .NET Framework 3.5 SP1, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, or 4.7.2 -OR- .NET Core 2.0 is required. For the included Windows native binaries, the version of the Visual C++ runtime corresponding to the .NET Framework used by the associated managed assembly is statically linked. For the included Linux native binaries, Ubuntu 16.04 LTS compatible runtime libraries are required. For the included macOS native binaries, macOS Sierra compatible runtime libraries are required.
This package depends on the "EntityFramework" package, version 6.0 or higher (indirectly via the "System.Data.SQLite.EF6" package).

As of version 1.0.92.0, this package will not directly contain any of the required binaries. Instead, this package will depend on the "System.Data.SQLite.Core", "System.Data.SQLite.Linq", and "System.Data.SQLite.EF6" packages.

(sha1: 1e09097b2736af5160b82994c5ab30558230ec0b)
  System.Data.SQLite.Core.1.0.118.0.nupkg
(0.00 MiB)
This NuGet package contains all the binaries for both the x86 and x64 versions of System.Data.SQLite 1.0.118.0 (3.42.0), except those needed to support LINQ and Entity Framework 6. The .NET Framework 3.5 SP1, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, or 4.7.2 is required -OR- .NET Core 2.0 is required. For the included Windows native binaries, the version of the Visual C++ runtime corresponding to the .NET Framework used by the associated managed assembly is statically linked. For the included Linux native binaries, Ubuntu 16.04 LTS compatible runtime libraries are required. For the included macOS native binaries, macOS Sierra compatible runtime libraries are required.
This package does not depend on any other package.
(sha1: b3a43b0ed3f706d3a56e58534773ce27d7b75ad8)
  System.Data.SQLite.Core.MSIL.1.0.118.0.nupkg
(2.02 MiB)
This NuGet package contains the managed binaries for System.Data.SQLite 1.0.118.0. The .NET Framework 3.5 SP1, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, or 4.7.2 is required.
This package does not depend on any other package.

This NuGet package does not include any code from the native SQLite core library and will not work properly without the native assembly "SQLite.Interop.dll" compiled for the processor architecture of the host process being present in a directory in the native library search path.

(sha1: 41440ad3cf3b429bcf06080f6fa77b03534730ca)
  System.Data.SQLite.EF6.1.0.118.0.nupkg
(0.27 MiB)
This NuGet package contains just the binaries to support Entity Framework 6 using System.Data.SQLite 1.0.118.0 (3.42.0). The .NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, or 4.7.2 is required.
This package depends on the "EntityFramework" package, version 6.0 or higher.
(sha1: 68a20c3745ace7bafd02763327b64f4f55d8c139)
  System.Data.SQLite.Linq.1.0.118.0.nupkg
(0.27 MiB)
This NuGet package contains just the binaries to support LINQ using System.Data.SQLite 1.0.118.0 (3.42.0). The .NET Framework 3.5 SP1, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, or 4.7.2 is required.
This package does not depend on any other package.
(sha1: 614f58313541cad7bc0d7f2616cc1cca5afa4245)
  System.Data.SQLite.MSIL.1.0.118.0.nupkg
(0.00 MiB)
This NuGet package contains the managed binaries for System.Data.SQLite 1.0.118.0. The .NET Framework 3.5 SP1, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, or 4.7.2 is required.
This is a legacy package; if possible, please use either the "System.Data.SQLite" or "System.Data.SQLite.Core" package instead.

This NuGet package does not include any code from the native SQLite core library and will not work properly without the native assembly "SQLite.Interop.dll" compiled for the processor architecture of the host process being present in a directory in the native library search path.

As of version 1.0.95.0, this package will not directly contain any of the required binaries. Instead, this package will depend on the "System.Data.SQLite.Core.MSIL", "System.Data.SQLite.Linq", and "System.Data.SQLite.EF6" packages.

(sha1: d1618b06a74a0fa97ae4d09f381540427819a5c0)
  System.Data.SQLite.x86.1.0.118.0.nupkg
(4.82 MiB)
This NuGet package contains all the binaries for the x86 version of System.Data.SQLite 1.0.118.0 (3.42.0). The .NET Framework 3.5 SP1, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, or 4.7.2 is required. For the included native binaries, the version of the Visual C++ runtime corresponding to the .NET Framework used by the associated managed assembly is statically linked.
This is a legacy package; if possible, please use either the "System.Data.SQLite" or "System.Data.SQLite.Core" package instead.
(sha1: eb60d6a86d077e5a93dab173d929211cc245b2d0)
  System.Data.SQLite.x64.1.0.118.0.nupkg
(5.43 MiB)
This NuGet package contains all the binaries for the x64 version of System.Data.SQLite 1.0.118.0 (3.42.0). The .NET Framework 3.5 SP1, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, or 4.7.2 is required. For the included native binaries, the version of the Visual C++ runtime corresponding to the .NET Framework used by the associated managed assembly is statically linked.
This is a legacy package; if possible, please use either the "System.Data.SQLite" or "System.Data.SQLite.Core" package instead.
(sha1: 4f4456dd4d4ba49cad3887c5ad09967a02402bc6)
  Stub.System.Data.SQLite.Core.NetFramework.1.0.118.0.nupkg
(9.85 MiB)
This NuGet package contains all the binaries for both the x86 and x64 versions of System.Data.SQLite 1.0.118.0 (3.42.0), except those needed to support LINQ and Entity Framework 6. The .NET Framework 3.5 SP1, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, or 4.7.2 is required. For the included Windows native binaries, the version of the Visual C++ runtime corresponding to the .NET Framework used by the associated managed assembly is statically linked. For the included Linux native binaries, Ubuntu 16.04 LTS compatible runtime libraries are required. For the included macOS native binaries, macOS Sierra compatible runtime libraries are required.
This package does not depend on any other package.
(sha1: c9940c474a8e4c5444ecf07963cd0acf37f70297)
  Stub.System.Data.SQLite.Core.NetStandard.1.0.118.0.nupkg
(4.19 MiB)
This NuGet package contains all the binaries for both the x86 and x64 versions of System.Data.SQLite 1.0.118.0 (3.42.0), except those needed to support LINQ and Entity Framework 6. The .NET Core runtime 2.0, 2.1, 2.2, 3.0, or 3.1 is required. For the included Windows native binaries, the version of the Visual C++ runtime corresponding to the .NET Framework used by the associated managed assembly is statically linked. For the included Linux native binaries, Ubuntu 16.04 LTS compatible runtime libraries are required. For the included macOS native binaries, macOS Sierra compatible runtime libraries are required.
This package does not depend on any other package.
(sha1: 5493bfeb10d47bceb13396d5398a487fe92c9816)

Build Product Names

Beginning with System.Data.SQLite version 1.0.101.0 (3.12.2), the following templates will be used for the names of the build products:

  1. sqlite-netFx-source-version.zip
  2. sqlite-netFx-source-version.tar.gz
  3. sqlite-netFx-full-source-version.zip
  4. sqlite-netFx-full-source-version.tar.gz
  5. sqlite-framework-binary-platform-year-version.zip
  6. sqlite-framework-binary-bundle-platform-year-version.zip
  7. sqlite-framework-static-binary-platform-year-version.zip
  8. sqlite-framework-static-binary-bundle-platform-year-version.zip
  9. sqlite-netFx-source-date.zip
  10. sqlite-netFx-full-source-date.zip
  11. System.Data.SQLite.version.nupkg
  12. System.Data.SQLite.variant.version.nupkg
  13. System.Data.SQLite.variant.releaseType.version.nupkg
  14. Stub.System.Data.SQLite.Core.variant.version.nupkg

Templates (1), (2), (3), and (4) are used for source-code packages. Templates (1) and (3) are used for generic source-code packages and templates (2) and (4) are used for source-code packages that are generally only useful on unix-like platforms. Templates (3) and (4) are used for source-code packages that include the extra files needed to run the unit test suite.

Templates (5) and (6) are used for the precompiled binary packages. Template (6) is used for the precompiled binary package containing the mixed-mode assembly. Templates (7) and (8) are used for the precompiled binary packages statically linked to the Visual C++ runtime. Template (8) is used for the precompiled binary package containing the mixed-mode assembly statically linked to the Visual C++ runtime.

Templates (9) and (10) are used for unofficial pre-release "snapshots" of source code.

Templates (11), (12), and (13) are used for the official NuGet packages.

The framework in templates (5), (6), (7), and (8) will be one of netFx20, netFx35, netFx40, netFx45, netFx451, netFx452, netFx46, netFx461, netFx462, netFx47, netFx471, netFx472, netFx48.

The platform in templates (5), (6), (7), and (8) will be one of Win32, x64, PocketPC, PocketPC-ARM, PocketPC-x86, WinCE-ARM, WinCE-x86, Mono.

The year in templates (5), (6), (7), and (8) will be one of 2005, 2008, 2010, 2012, 2013, 2015, 2017, 20XX, NetStandard20, NetStandard21.

The version in templates (1), (2), (3), (4), (5), (6), (7), (8), (11), (12), (13), and (14) is the dot-delimited version number of the primary System.Data.SQLite assembly.

The date in template (9) and (10) is of the form: YYYYMMDDHHMM

The variant in template (12), (13), and (14) will be MSIL, x86, or x64. Alternatively, it may be absent, which represents the default variant.

The releaseType in template (13) will be Beta or Test. Alternatively, it may be absent, which represents the default release type.

Canonical Source Code

The canonical System.Data.SQLite source code is maintained in a Fossil repository that is available for anonymous read-only access. Anyone can view the repository contents and download historical versions of individual files or ZIP archives of historical check-ins.

The complete source tree for any check-in may always be downloaded using the "Tarball" or "ZIP archive" links available from each check-in detail page.