数据库
首页 > 数据库> > SQLite 安装

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
在这里插入图片描述

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

在这里插入图片描述

添加 C:\sqlite 到 PATH 环境变量
在这里插入图片描述
最后在命令提示符下,使用 sqlite3 命令,将显示如下结果。
在这里插入图片描述

标签:SQLite,Windows,sqlite,3360000,program,sqlite3,安装
来源: https://blog.csdn.net/tuxwig/article/details/120895413