.net framework 4.6

SQLite v1.0.112

2026-05-07

Written by: xiaobin

MFC is not required.

SQLite.Designer is required during compilation.

Automated Build - command line

cd <root>\Setup
build.bat ReleaseManagedOnly
build.bat ReleaseNativeOnly Win32
build.bat ReleaseNativeOnly x64

Manual Build - VS2019

If you don’t have VS2015 installed, then build manually.

Open “SQLite.NET.2015.sln” with VS2019.

About SQLite.NET.2015.sln and SQLite.NET.2015.MSBuild.sln

Cannot open include file: ‘malloc.h’

ref Malloc library, C header files missing to compile Sqlite3.c, Compiling amalgamation with Visual Studio 2019

inno

System.Data.SQLite.dll not exist

Due to official documentation corrections, the following two commands need to be added:

build.bat Release Win32
build.bat Release x64

done

IF "%PROCESSOR_ARCHITECTURE%" == "x86" GOTO set_path_x86

SET INNOSETUPPATH=%ProgramFiles(x86)%\Inno Setup 7
GOTO set_path_done

:set_path_x86

SET INNOSETUPPATH=%ProgramFiles%\Inno Setup 7

:set_path_done
bake_all.bat

Ref