SQLite 安装

目录

在 Windows 上安装 SQLite

请访问 SQLite 下载页面,从 Windows 区下载预编译的二进制文件。

https://www.sqlite.org/download.html
Precompiled Binaries for Windows

sqlite-dll-win64-x64-3360000.zip
(880.05 KiB) 64-bit DLL (x64) for SQLite version 3.36.0.
(sha3: af88804c191758431458611b8214b466348df17415b2671641793cef53ae762a)

sqlite-tools-win32-x86-3360000.zip (1.82 MiB) A bundle of command-line tools for managing SQLite database files, including the command-line shell program, the sqldiff.exe program, and the sqlite3_analyzer.exe program.
(sha3: 38a0b9d0d41487b76c86f8d45c0e05def2011ac9e48a331dde79bb28087d9eda)

我的电脑是64位的操作系统,所以下载的是sqlite-dll-win64-x64-3360000.zip
SQLite 安装

创建文件夹 C:\sqlite,并在此文件夹下解压上面两个压缩文件,将得到 sqlite3.def、sqlite3.dll 和 sqlite3.exe 文件。

SQLite 安装

添加 C:\sqlite 到 PATH 环境变量
SQLite 安装
最后在命令提示符下,使用 sqlite3 命令,将显示如下结果。
SQLite 安装

上一篇:官宣 .NET 6 RC (Release Candidate) 2


下一篇:Inno setup 中 执行参数传递注意的地方