System.Data.SQLite

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

System.Data.SQLite Downloads

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, or 2013) of the Microsoft Visual C++ Runtime Library, to be successfully installed on the target machine, prior to making use of the executables contained therein. It should also be noted that the downloadable packages on this web page that include the word "setup" (i.e. the setup packages) already include and will attempt to automatically install the required version of the Microsoft Visual C++ Runtime Library.
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
This page contains all the downloadable packages (e.g. sources, binaries, setups, etc) for the current release version of the official "System.Data.SQLite" project. This is the only official distribution point for these downloadable packages. If these packages are obtained elsewhere, it is very important to compare their SHA1 hashes to the corresponding hashes listed below to make sure the contained files are the same.
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 setup packages are intended to be installed only on developer machines and then only when the design-time components for Visual Studio are required. In theory, they can be installed on customer machines as well; however, this type of deployment is not recommended.

  • 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.94.1.zip
(4.93 MiB)
This ZIP archive contains all current source code for System.Data.SQLite 1.0.94.0 (3.8.6) combined into a single archive file.
(sha1: c59b48c22a0471634adb204f920ec397f69cfe1d)
Setups for 32-bit Windows (.NET Framework 2.0 SP2)
  sqlite-netFx20-setup-bundle-x86-2005-1.0.94.0.exe
(5.03 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.94.0 (3.8.6) package. The Visual C++ 2005 SP1 runtime for x86 is included. The .NET Framework 2.0 SP2 is required.
This is the only setup package that is capable of installing the design-time components for Visual Studio 2005. However, if you do not require the design-time components, please consider downloading the associated Precompiled Binaries instead.
(sha1: 89e8ff720473f51b96a8f550e17f6a01eae62584)
  sqlite-netFx20-setup-x86-2005-1.0.94.0.exe
(5.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.94.0 (3.8.6) package. The Visual C++ 2005 SP1 runtime for x86 is included. The .NET Framework 2.0 SP2 is required.
(sha1: cc4d95119bd85bf663f22148780e6664dad1ac54)
Setups for 64-bit Windows (.NET Framework 2.0 SP2)
  sqlite-netFx20-setup-bundle-x64-2005-1.0.94.0.exe
(5.63 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.94.0 (3.8.6) package. The Visual C++ 2005 SP1 runtime for x64 is included. The .NET Framework 2.0 SP2 is required.
(sha1: ceb7df944ad92f3e3bb1af672d25dcad1af7d2d3)
  sqlite-netFx20-setup-x64-2005-1.0.94.0.exe
(5.62 MiB)
This setup package will install all the necessary runtime components and dependencies for the x64 version of the System.Data.SQLite 1.0.94.0 (3.8.6) package. The Visual C++ 2005 SP1 runtime for x64 is included. The .NET Framework 2.0 SP2 is required.
(sha1: fc92081f2ecb291db47152b85cbdda2f514fd349)
Setups for 32-bit Windows (.NET Framework 3.5 SP1)
  sqlite-netFx35-setup-bundle-x86-2008-1.0.94.0.exe
(7.07 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.94.0 (3.8.6) package. The Visual C++ 2008 SP1 runtime for x86 is included. The .NET Framework 3.5 SP1 is required.
This is the only setup package that is capable of installing the design-time components for Visual Studio 2008. However, if you do not require the design-time components, please consider downloading the associated Precompiled Binaries instead.
(sha1: 5b2d64b941587589aa09d642bcd871ee3a2bc521)
  sqlite-netFx35-setup-x86-2008-1.0.94.0.exe
(7.06 MiB)
This setup package will install all the necessary runtime components and dependencies for the x86 version of the System.Data.SQLite 1.0.94.0 (3.8.6) package. The Visual C++ 2008 SP1 runtime for x86 is included. The .NET Framework 3.5 SP1 is required.
(sha1: e048348461bbad68670be2167dfe3643eca1e7b7)
Setups for 64-bit Windows (.NET Framework 3.5 SP1)
  sqlite-netFx35-setup-bundle-x64-2008-1.0.94.0.exe
(7.81 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.94.0 (3.8.6) package. The Visual C++ 2008 SP1 runtime for x64 is included. The .NET Framework 3.5 SP1 is required.
(sha1: b70235477071fc685edb1fc0f5e91ddee61ed632)
  sqlite-netFx35-setup-x64-2008-1.0.94.0.exe
(7.80 MiB)
This setup package will install all the necessary runtime components and dependencies for the x64 version of the System.Data.SQLite 1.0.94.0 (3.8.6) package. The Visual C++ 2008 SP1 runtime for x64 is included. The .NET Framework 3.5 SP1 is required.
(sha1: 70f1a2c6543ae2ccf9dc8f267fa6ffc242935b83)
Setups for 32-bit Windows (.NET Framework 4.0)
  sqlite-netFx40-setup-bundle-x86-2010-1.0.94.0.exe
(12.63 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.94.0 (3.8.6) package. The Visual C++ 2010 SP1 runtime for x86 is included. The .NET Framework 4.0 is required.
This is the only setup package that is capable of installing the design-time components for Visual Studio 2010. However, if you do not require the design-time components, please consider downloading the associated Precompiled Binaries instead.
(sha1: 1601fa560359ab7ac0a64fa9fb1a7fbd1d15288b)
  sqlite-netFx40-setup-x86-2010-1.0.94.0.exe
(12.62 MiB)
This setup package will install all the necessary runtime components and dependencies for the x86 version of the System.Data.SQLite 1.0.94.0 (3.8.6) package. The Visual C++ 2010 SP1 runtime for x86 is included. The .NET Framework 4.0 is required.
(sha1: 72359dc97731763b9fd1f573b793ee4b03a9fd3e)
Setups for 64-bit Windows (.NET Framework 4.0)
  sqlite-netFx40-setup-bundle-x64-2010-1.0.94.0.exe
(13.88 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.94.0 (3.8.6) package. The Visual C++ 2010 SP1 runtime for x64 is included. The .NET Framework 4.0 is required.
(sha1: d1dc39c8fa8deff46d465e0f2ae4a6e8817a9240)
  sqlite-netFx40-setup-x64-2010-1.0.94.0.exe
(13.87 MiB)
This setup package will install all the necessary runtime components and dependencies for the x64 version of the System.Data.SQLite 1.0.94.0 (3.8.6) package. The Visual C++ 2010 SP1 runtime for x64 is included. The .NET Framework 4.0 is required.
(sha1: 943ff19b2715b8b85ef9738ddc71f404d2e4383b)
Setups for 32-bit Windows (.NET Framework 4.5)
  sqlite-netFx45-setup-bundle-x86-2012-1.0.94.0.exe
(10.06 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.94.0 (3.8.6) package. The Visual C++ 2012 Update 4 runtime for x86 is included. The .NET Framework 4.5 is required.
This is the only setup package that is capable of installing the design-time components for Visual Studio 2012. However, if you do not require the design-time components, please consider downloading the associated Precompiled Binaries instead.
(sha1: 65958357110ff8388debbc1dea6acc9551d57a54)
  sqlite-netFx45-setup-x86-2012-1.0.94.0.exe
(10.09 MiB)
This setup package will install all the necessary runtime components and dependencies for the x86 version of the System.Data.SQLite 1.0.94.0 (3.8.6) package. The Visual C++ 2012 Update 4 runtime for x86 is included. The .NET Framework 4.5 is required.
(sha1: 3542d35277a25e6b90125a9b223bbdb4abc0ebf8)
Setups for 64-bit Windows (.NET Framework 4.5)
  sqlite-netFx45-setup-bundle-x64-2012-1.0.94.0.exe
(10.72 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.94.0 (3.8.6) package. The Visual C++ 2012 Update 4 runtime for x64 is included. The .NET Framework 4.5 is required.
(sha1: eca04e6cb2ed7ac4aa0f158f5caebbfcb733a0ed)
  sqlite-netFx45-setup-x64-2012-1.0.94.0.exe
(10.76 MiB)
This setup package will install all the necessary runtime components and dependencies for the x64 version of the System.Data.SQLite 1.0.94.0 (3.8.6) package. The Visual C++ 2012 Update 4 runtime for x64 is included. The .NET Framework 4.5 is required.
(sha1: 6992e7df36687c9f7d85d1a9d95f086e6ce64e51)
Setups for 32-bit Windows (.NET Framework 4.5.1)
  sqlite-netFx451-setup-bundle-x86-2013-1.0.94.0.exe
(10.02 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.94.0 (3.8.6) package. The Visual C++ 2013 Update 2 runtime for x86 is included. The .NET Framework 4.5.1 is required.
This is the only setup package that is capable of installing the design-time components for Visual Studio 2013. However, if you do not require the design-time components, please consider downloading the associated Precompiled Binaries instead.
(sha1: cb16ee04221cfc6675b2f38af6093966f2d737d6)
  sqlite-netFx451-setup-x86-2013-1.0.94.0.exe
(10.05 MiB)
This setup package will install all the necessary runtime components and dependencies for the x86 version of the System.Data.SQLite 1.0.94.0 (3.8.6) package. The Visual C++ 2013 Update 2 runtime for x86 is included. The .NET Framework 4.5.1 is required.
(sha1: 134a2cd850f51dafdbde7a1a726f684ae1d3658c)
Setups for 64-bit Windows (.NET Framework 4.5.1)
  sqlite-netFx451-setup-bundle-x64-2013-1.0.94.0.exe
(10.70 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.94.0 (3.8.6) package. The Visual C++ 2013 Update 2 runtime for x64 is included. The .NET Framework 4.5.1 is required.
(sha1: fc362adb265b01623718dbb5047cef1be7deeba8)
  sqlite-netFx451-setup-x64-2013-1.0.94.0.exe
(10.75 MiB)
This setup package will install all the necessary runtime components and dependencies for the x64 version of the System.Data.SQLite 1.0.94.0 (3.8.6) package. The Visual C++ 2013 Update 2 runtime for x64 is included. The .NET Framework 4.5.1 is required.
(sha1: 777e319d04e4e647d84f4b1fa72a2d4f1b0a5654)
Precompiled Binaries for 32-bit Windows (.NET Framework 2.0 SP2)
  sqlite-netFx20-binary-bundle-Win32-2005-1.0.94.0.zip
(1.45 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.94.0 (3.8.6) package. The Visual C++ 2005 SP1 runtime for x86 and the .NET Framework 2.0 SP2 are required.
(sha1: a3eeae418f2c3632fb844f0dd6ef00c732fb9f1b)
  sqlite-netFx20-binary-Win32-2005-1.0.94.0.zip
(1.44 MiB)
This binary package contains all the binaries for the x86 version of the System.Data.SQLite 1.0.94.0 (3.8.6) package. The Visual C++ 2005 SP1 runtime for x86 and the .NET Framework 2.0 SP2 are required.
(sha1: 4cddb7dbd5f8ccc2f852f652172a957748117837)
Precompiled Binaries for 64-bit Windows (.NET Framework 2.0 SP2)
  sqlite-netFx20-binary-bundle-x64-2005-1.0.94.0.zip
(1.67 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.94.0 (3.8.6) package. The Visual C++ 2005 SP1 runtime for x64 and the .NET Framework 2.0 SP2 are required.
(sha1: 6e01f5aaa463fdee2f57e0b3ababcd6b268358ba)
  sqlite-netFx20-binary-x64-2005-1.0.94.0.zip
(1.66 MiB)
This binary package contains all the binaries for the x64 version of the System.Data.SQLite 1.0.94.0 (3.8.6) package. The Visual C++ 2005 SP1 runtime for x64 and the .NET Framework 2.0 SP2 are required.
(sha1: a32305642a60249a7cb82c770c66a44dbae7acaf)
Precompiled Binaries for 32-bit Windows (.NET Framework 3.5 SP1)
  sqlite-netFx35-binary-bundle-Win32-2008-1.0.94.0.zip
(1.90 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.94.0 (3.8.6) package. The Visual C++ 2008 SP1 runtime for x86 and the .NET Framework 3.5 SP1 are required.
(sha1: 485dee22ab1d1787c52f795091275fcaeb15d45b)
  sqlite-netFx35-binary-Win32-2008-1.0.94.0.zip
(1.89 MiB)
This binary package contains all the binaries for the x86 version of the System.Data.SQLite 1.0.94.0 (3.8.6) package. The Visual C++ 2008 SP1 runtime for x86 and the .NET Framework 3.5 SP1 are required.
(sha1: f5214a85fe76ca4d8053497ffdb05c3c6fa8180e)
Precompiled Binaries for 64-bit Windows (.NET Framework 3.5 SP1)
  sqlite-netFx35-binary-bundle-x64-2008-1.0.94.0.zip
(1.97 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.94.0 (3.8.6) package. The Visual C++ 2008 SP1 runtime for x64 and the .NET Framework 3.5 SP1 are required.
(sha1: 82e1de1b46be92d23b6dc29b3c0447ccd421dc47)
  sqlite-netFx35-binary-x64-2008-1.0.94.0.zip
(1.96 MiB)
This binary package contains all the binaries for the x64 version of the System.Data.SQLite 1.0.94.0 (3.8.6) package. The Visual C++ 2008 SP1 runtime for x64 and the .NET Framework 3.5 SP1 are required.
(sha1: 289e22ac2c1f14a26dd94a6e336c18648c7ffcd7)
Precompiled Binaries for 32-bit Windows (.NET Framework 4.0)
  sqlite-netFx40-binary-bundle-Win32-2010-1.0.94.0.zip
(2.11 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.94.0 (3.8.6) package. The Visual C++ 2010 SP1 runtime for x86 and the .NET Framework 4.0 are required.
(sha1: 25fa18172761109d3f686eab5c82eea06a790a50)
  sqlite-netFx40-binary-Win32-2010-1.0.94.0.zip
(2.10 MiB)
This binary package contains all the binaries for the x86 version of the System.Data.SQLite 1.0.94.0 (3.8.6) package. The Visual C++ 2010 SP1 runtime for x86 and the .NET Framework 4.0 are required.
(sha1: d85d22231a01653a02ae55a534453f34a73a46ac)
Precompiled Binaries for 64-bit Windows (.NET Framework 4.0)
  sqlite-netFx40-binary-bundle-x64-2010-1.0.94.0.zip
(2.13 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.94.0 (3.8.6) package. The Visual C++ 2010 SP1 runtime for x64 and the .NET Framework 4.0 are required.
(sha1: 0a7133390991f8498a4c0a61e60b8fedceba82c2)
  sqlite-netFx40-binary-x64-2010-1.0.94.0.zip
(2.12 MiB)
This binary package contains all the binaries for the x64 version of the System.Data.SQLite 1.0.94.0 (3.8.6) package. The Visual C++ 2010 SP1 runtime for x64 and the .NET Framework 4.0 are required.
(sha1: 1fa5f3f917bf4a8a200b971958fa275a6ee58dbf)
Precompiled Binaries for 32-bit Windows (.NET Framework 4.5)
  sqlite-netFx45-binary-bundle-Win32-2012-1.0.94.0.zip
(2.03 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.94.0 (3.8.6) package. The Visual C++ 2012 Update 4 runtime for x86 and the .NET Framework 4.5 are required.
(sha1: cd49e148e4784b8d626272692ce823aaa7fd12c7)
  sqlite-netFx45-binary-Win32-2012-1.0.94.0.zip
(2.08 MiB)
This binary package contains all the binaries for the x86 version of the System.Data.SQLite 1.0.94.0 (3.8.6) package. The Visual C++ 2012 Update 4 runtime for x86 and the .NET Framework 4.5 are required.
(sha1: 2e6d6723511bc89dd6480cb2809a4ddd90c8e75b)
Precompiled Binaries for 64-bit Windows (.NET Framework 4.5)
  sqlite-netFx45-binary-bundle-x64-2012-1.0.94.0.zip
(2.07 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.94.0 (3.8.6) package. The Visual C++ 2012 Update 4 runtime for x64 and the .NET Framework 4.5 are required.
(sha1: d318739a15a0b4a8f5e7c73abf7a88fe6089ed50)
  sqlite-netFx45-binary-x64-2012-1.0.94.0.zip
(2.13 MiB)
This binary package contains all the binaries for the x64 version of the System.Data.SQLite 1.0.94.0 (3.8.6) package. The Visual C++ 2012 Update 4 runtime for x64 and the .NET Framework 4.5 are required.
(sha1: 6a58d349ba550da6c84af4b6eaad67460246c432)
Precompiled Binaries for 32-bit Windows (.NET Framework 4.5.1)
  sqlite-netFx451-binary-bundle-Win32-2013-1.0.94.0.zip
(2.04 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.94.0 (3.8.6) package. The Visual C++ 2013 Update 2 runtime for x86 and the .NET Framework 4.5.1 are required.
(sha1: 008a80c434ba46a911560c4e380f281f8a41de25)
  sqlite-netFx451-binary-Win32-2013-1.0.94.0.zip
(2.09 MiB)
This binary package contains all the binaries for the x86 version of the System.Data.SQLite 1.0.94.0 (3.8.6) package. The Visual C++ 2013 Update 2 runtime for x86 and the .NET Framework 4.5.1 are required.
(sha1: c191fa2828ea2048ac1fca1d1a55d07241332c39)
Precompiled Binaries for 64-bit Windows (.NET Framework 4.5.1)
  sqlite-netFx451-binary-bundle-x64-2013-1.0.94.0.zip
(2.07 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.94.0 (3.8.6) package. The Visual C++ 2013 Update 2 runtime for x64 and the .NET Framework 4.5.1 are required.
(sha1: fa7c3c065696fd143cf8e03c7416c32b9d8680c0)
  sqlite-netFx451-binary-x64-2013-1.0.94.0.zip
(2.13 MiB)
This binary package contains all the binaries for the x64 version of the System.Data.SQLite 1.0.94.0 (3.8.6) package. The Visual C++ 2013 Update 2 runtime for x64 and the .NET Framework 4.5.1 are required.
(sha1: 16f9e6fc071c71f165a0ca632f9ecf3f591ab36f)
Precompiled Statically-Linked Binaries for 32-bit Windows (.NET Framework 2.0 SP2)
  sqlite-netFx20-static-binary-bundle-Win32-2005-1.0.94.0.zip
(1.66 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.94.0 (3.8.6) package. The Visual C++ 2005 SP1 runtime for x86 is statically linked. The .NET Framework 2.0 SP2 is required.
(sha1: a123898324386801e4921f1e58613e73a813b66c)
  sqlite-netFx20-static-binary-Win32-2005-1.0.94.0.zip
(1.65 MiB)
This binary package contains all the binaries for the x86 version of the System.Data.SQLite 1.0.94.0 (3.8.6) package. The Visual C++ 2005 SP1 runtime for x86 is statically linked. The .NET Framework 2.0 SP2 is required.
(sha1: 01084c4da3fe0af8da195c7d97ea43a1845a991d)
Precompiled Statically-Linked Binaries for 64-bit Windows (.NET Framework 2.0 SP2)
  sqlite-netFx20-static-binary-bundle-x64-2005-1.0.94.0.zip
(1.83 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.94.0 (3.8.6) package. The Visual C++ 2005 SP1 runtime for x64 is statically linked. The .NET Framework 2.0 SP2 is required.
(sha1: 5f2f84a6fd28d9e72640c51b34f086059ca066fe)
  sqlite-netFx20-static-binary-x64-2005-1.0.94.0.zip
(1.82 MiB)
This binary package contains all the binaries for the x64 version of the System.Data.SQLite 1.0.94.0 (3.8.6) package. The Visual C++ 2005 SP1 runtime for x64 is statically linked. The .NET Framework 2.0 SP2 is required.
(sha1: 29b318c93ec6e17adcb591722ff0ce8ec4f59bf3)
Precompiled Statically-Linked Binaries for 32-bit Windows (.NET Framework 3.5 SP1)
  sqlite-netFx35-static-binary-bundle-Win32-2008-1.0.94.0.zip
(2.11 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.94.0 (3.8.6) package. The Visual C++ 2008 SP1 runtime for x86 is statically linked. The .NET Framework 3.5 SP1 is required.
(sha1: 748fabb93f43e7185709da98df8d3f998c3637c3)
  sqlite-netFx35-static-binary-Win32-2008-1.0.94.0.zip
(2.10 MiB)
This binary package contains all the binaries for the x86 version of the System.Data.SQLite 1.0.94.0 (3.8.6) package. The Visual C++ 2008 SP1 runtime for x86 is statically linked. The .NET Framework 3.5 SP1 is required.
(sha1: bf8880b545d178059ed26bbdad5bae4dc09e1a54)
Precompiled Statically-Linked Binaries for 64-bit Windows (.NET Framework 3.5 SP1)
  sqlite-netFx35-static-binary-bundle-x64-2008-1.0.94.0.zip
(2.15 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.94.0 (3.8.6) package. The Visual C++ 2008 SP1 runtime for x64 is statically linked. The .NET Framework 3.5 SP1 is required.
(sha1: 147f5a3c723ca783f1ad2240a8f2a0992cff4518)
  sqlite-netFx35-static-binary-x64-2008-1.0.94.0.zip
(2.14 MiB)
This binary package contains all the binaries for the x64 version of the System.Data.SQLite 1.0.94.0 (3.8.6) package. The Visual C++ 2008 SP1 runtime for x64 is statically linked. The .NET Framework 3.5 SP1 is required.
(sha1: 0f5d2c06a80f9e094ebde30fe69f95382b5ab0cc)
Precompiled Statically-Linked Binaries for 32-bit Windows (.NET Framework 4.0)
  sqlite-netFx40-static-binary-bundle-Win32-2010-1.0.94.0.zip
(2.33 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.94.0 (3.8.6) package. The Visual C++ 2010 SP1 runtime for x86 is statically linked. The .NET Framework 4.0 is required.
(sha1: 8325346e10a2a6891d82ffee1bca8764a8bd4f8b)
  sqlite-netFx40-static-binary-Win32-2010-1.0.94.0.zip
(2.32 MiB)
This binary package contains all the binaries for the x86 version of the System.Data.SQLite 1.0.94.0 (3.8.6) package. The Visual C++ 2010 SP1 runtime for x86 is statically linked. The .NET Framework 4.0 is required.
(sha1: de271068c924fcfa1eec65e9825be0a5f96b86ef)
Precompiled Statically-Linked Binaries for 64-bit Windows (.NET Framework 4.0)
  sqlite-netFx40-static-binary-bundle-x64-2010-1.0.94.0.zip
(2.33 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.94.0 (3.8.6) package. The Visual C++ 2010 SP1 runtime for x64 is statically linked. The .NET Framework 4.0 is required.
(sha1: 81806773701d8956ae2fd4b743e02cf297156ddc)
  sqlite-netFx40-static-binary-x64-2010-1.0.94.0.zip
(2.32 MiB)
This binary package contains all the binaries for the x64 version of the System.Data.SQLite 1.0.94.0 (3.8.6) package. The Visual C++ 2010 SP1 runtime for x64 is statically linked. The .NET Framework 4.0 is required.
(sha1: 9b1a9c7b1519ff60ffde1d91189bf4be38e0066f)
Precompiled Statically-Linked Binaries for 32-bit Windows (.NET Framework 4.5)
  sqlite-netFx45-static-binary-bundle-Win32-2012-1.0.94.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.94.0 (3.8.6) package. The Visual C++ 2012 Update 4 runtime for x86 is statically linked. The .NET Framework 4.5 is required.
(sha1: ce23efad4f01d80ed6db8a2c65d1733b3e03023f)
  sqlite-netFx45-static-binary-Win32-2012-1.0.94.0.zip
(2.41 MiB)
This binary package contains all the binaries for the x86 version of the System.Data.SQLite 1.0.94.0 (3.8.6) package. The Visual C++ 2012 Update 4 runtime for x86 is statically linked. The .NET Framework 4.5 is required.
(sha1: 8d3280f616aac5fdd1ef7e8a5cc2491869140684)
Precompiled Statically-Linked Binaries for 64-bit Windows (.NET Framework 4.5)
  sqlite-netFx45-static-binary-bundle-x64-2012-1.0.94.0.zip
(2.32 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.94.0 (3.8.6) package. The Visual C++ 2012 Update 4 runtime for x64 is statically linked. The .NET Framework 4.5 is required.
(sha1: db76fa14234762a0ed594c0a9c7d17b7326f566b)
  sqlite-netFx45-static-binary-x64-2012-1.0.94.0.zip
(2.39 MiB)
This binary package contains all the binaries for the x64 version of the System.Data.SQLite 1.0.94.0 (3.8.6) package. The Visual C++ 2012 Update 4 runtime for x64 is statically linked. The .NET Framework 4.5 is required.
(sha1: f9022ca9a3d1f1b6098e18170fbd94bca8467215)
Precompiled Statically-Linked Binaries for 32-bit Windows (.NET Framework 4.5.1)
  sqlite-netFx451-static-binary-bundle-Win32-2013-1.0.94.0.zip
(2.39 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.94.0 (3.8.6) package. The Visual C++ 2013 Update 2 runtime for x86 is statically linked. The .NET Framework 4.5.1 is required.
(sha1: 919eb67a3c4fdbf098df3d99eb57bd975bd1802b)
  sqlite-netFx451-static-binary-Win32-2013-1.0.94.0.zip
(2.43 MiB)
This binary package contains all the binaries for the x86 version of the System.Data.SQLite 1.0.94.0 (3.8.6) package. The Visual C++ 2013 Update 2 runtime for x86 is statically linked. The .NET Framework 4.5.1 is required.
(sha1: 135060b1096ec4ad75e4c9e545ebfc238ba174d9)
Precompiled Statically-Linked Binaries for 64-bit Windows (.NET Framework 4.5.1)
  sqlite-netFx451-static-binary-bundle-x64-2013-1.0.94.0.zip
(2.36 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.94.0 (3.8.6) package. The Visual C++ 2013 Update 2 runtime for x64 is statically linked. The .NET Framework 4.5.1 is required.
(sha1: cd2f859c940b3982c261259fba118b485a42c424)
  sqlite-netFx451-static-binary-x64-2013-1.0.94.0.zip
(2.43 MiB)
This binary package contains all the binaries for the x64 version of the System.Data.SQLite 1.0.94.0 (3.8.6) package. The Visual C++ 2013 Update 2 runtime for x64 is statically linked. The .NET Framework 4.5.1 is required.
(sha1: 3eb9b68f6bdf36bfc52d6f2c81c94880c1197089)
Precompiled Binaries for Windows CE (.NET Compact Framework)
  sqlite-netFx35-binary-PocketPC-ARM-2008-1.0.94.0.zip
(1.07 MiB)
This binary package contains all the binaries for the PocketPC version of the System.Data.SQLite 1.0.94.0 (3.8.6) 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: 031cfad397957432cc20f63f78c94f453669a411)
  sqlite-netFx39-binary-WinCE-ARM-2012-1.0.94.0.zip
(1.18 MiB)
This binary package contains all the binaries for the Windows Embedded Compact 2013 (ARM) version of the System.Data.SQLite 1.0.94.0 (3.8.6) package. The .NET Compact Framework 3.9 is required.
(sha1: 80879214fc0009dd253edfd1f2bfdbd56c023aea)
  sqlite-netFx39-binary-WinCE-x86-2012-1.0.94.0.zip
(1.22 MiB)
This binary package contains all the binaries for the Windows Embedded Compact 2013 (x86) version of the System.Data.SQLite 1.0.94.0 (3.8.6) package. The .NET Compact Framework 3.9 is required.
(sha1: 99cb3adc76495c153f502dd3f37e7fac7f8eaa8b)
Official NuGet Packages
  System.Data.SQLite.1.0.94.1.nupkg
(0.00 MiB)
This NuGet package includes all the binaries for both the x86 and x64 versions of System.Data.SQLite 1.0.94.0 (3.8.6). The .NET Framework 3.5 SP1, 4.0, 4.5, or 4.5.1 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 package depends on the "EntityFramework" 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: 45eaa9eab15571878adc89750a491e1990d63e12)
  System.Data.SQLite.Core.1.0.94.0.nupkg
(4.92 MiB)
This NuGet package contains all the binaries for both the x86 and x64 versions of System.Data.SQLite 1.0.94.0 (3.8.6), except those needed to support LINQ and Entity Framework 6. The .NET Framework 3.5 SP1, 4.0, 4.5, or 4.5.1 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 package does not depend on any other package.
(sha1: 1ccad1b567f2d5d86d6f487e3613e605d24b6b07)
  System.Data.SQLite.Core.MSIL.1.0.94.0.nupkg
(0.68 MiB)
This NuGet package contains the managed binaries for System.Data.SQLite 1.0.94.0. The .NET Framework 3.5 SP1, 4.0, 4.5, or 4.5.1 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: 5ab704db605288ded3ac37787303d7074e4988bf)
  System.Data.SQLite.EF6.1.0.94.0.nupkg
(0.13 MiB)
This NuGet package contains just the binaries to support Entity Framework 6 using System.Data.SQLite 1.0.94.0 (3.8.6). The .NET Framework 4.0, 4.5, or 4.5.1 is required.
This package depends on both the "System.Data.SQLite.Core" and "EntityFramework" packages.
(sha1: fc4b0046b083a9fc7a294df3af3b9d3918ee88d8)
  System.Data.SQLite.Linq.1.0.94.1.nupkg
(0.17 MiB)
This NuGet package contains just the binaries to support LINQ using System.Data.SQLite 1.0.94.0 (3.8.6). The .NET Framework 3.5 SP1, 4.0, 4.5, or 4.5.1 is required.
This package depends on the "System.Data.SQLite.Core" package.
(sha1: a08052b4d350e3ba830ebf0618bc8c221a2ef70e)
  System.Data.SQLite.MSIL.1.0.94.1.nupkg
(0.99 MiB)
This NuGet package contains the managed binaries for System.Data.SQLite 1.0.94.0. The .NET Framework 3.5 SP1, 4.0, 4.5, or 4.5.1 is required.
This is a legacy package; if possible, please use either the "System.Data.SQLite" or "System.Data.SQLite.Core" package instead. This package depends on the "EntityFramework" 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: 7689db66a5b1f2c9c751dbece99ec2faa840f48d)
  System.Data.SQLite.x86.1.0.94.1.nupkg
(2.84 MiB)
This NuGet package contains all the binaries for the x86 version of System.Data.SQLite 1.0.94.0 (3.8.6). The .NET Framework 3.5 SP1, 4.0, 4.5, or 4.5.1 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. This package depends on the "EntityFramework" package.
(sha1: 501c8252fc23134ab99bc6c170a66732578e4a73)
  System.Data.SQLite.x64.1.0.94.1.nupkg
(3.11 MiB)
This NuGet package contains all the binaries for the x64 version of System.Data.SQLite 1.0.94.0 (3.8.6). The .NET Framework 3.5 SP1, 4.0, 4.5, or 4.5.1 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. This package depends on the "EntityFramework" package.
(sha1: 0c9fffde7bd3ed7181ad5aa4dba8e372abe54f0c)
Legacy Versions
  SQLite-1.0.66.0-setup.exe
(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.

Build Product Names

Beginning with System.Data.SQLite version 1.0.74.0 (3.7.7.1), 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-framework-setup-cpu-year-version.exe
  4. sqlite-framework-setup-bundle-cpu-year-version.exe
  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. System.Data.SQLite.version.nupkg
  11. System.Data.SQLite.variant.version.nupkg
  12. System.Data.SQLite.variant.releaseType.version.nupkg

Templates (1) and (2) are used for source-code packages. Template (1) is used for generic source-code packages and template (2) is used for source-code packages that are generally only useful on unix-like platforms. Template (3) is used for the setup package. Template (4) is used for the setup package containing the mixed-mode assembly. Template (5) is used for the precompiled binary package. Template (6) is used for the precompiled binary package containing the mixed-mode assembly. Template (7) is used for the precompiled binary package 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. Template (9) is used for unofficial pre-release "snapshots" of source code. Templates (10) and (11) are used for the official NuGet packages.

The framework in templates (3), (4), (5), (6), (7), and (8) will be one of netFx20, netFx35, netFx40, netFx45, netFx451.

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, PocketPC-ARM, PocketPC-x86, WinCE-ARM, WinCE-x86.

The year in templates (3), (4), (5), (6), (7), and (8) will be one of 2005, 2008, 2010, 2012, 2013.

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 variant in template (11) will be MSIL, x86, or x64. Alternatively, it may be absent, which represents the default variant.

The releaseType in template (12) 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.