- SQLite 教程
- SQLite - 主页
- SQLite - 概述
- SQLite - 安装
- SQLite - 命令
- SQLite - 语法
- SQLite - 数据类型
- SQLite - 创建数据库
- SQLite - 附加数据库
- SQLite - 分离数据库
- SQLite - 创建表
- SQLite - 删除表
- SQLite - 插入查询
- SQLite - 选择查询
- SQLite - 运算符
- SQLite - 表达式
- SQLite - WHERE 子句
- SQLite - AND & OR 子句
- SQLite - 更新查询
- SQLite - 删除查询
- SQLite - LIKE 子句
- SQLite - GLOB 子句
- SQLite - LIMIT 子句
- SQLite - ORDER By 子句
- SQLite - GROUP By 子句
- SQLite - HAVING 子句
- SQLite - DISTINCT 关键字
- 高级SQLite
- SQLite-PRAGMA
- SQLite - 约束
- SQLite - 连接
- SQLite - UNIONS 子句
- SQLite - NULL 值
- SQLite - ALIAS 语法
- SQLite - 触发器
- SQLite - 索引
- SQLite - 按子句索引
- SQLite - ALTER 命令
- SQLite - TRUNCATE 命令
- SQLite - 视图
- SQLite - 事务
- SQLite - 子查询
- SQLite - 自动增量
- SQLite - 注入
- SQLite - 解释
- SQLite - 真空
- SQLite - 日期和时间
- SQLite - 有用的函数
- SQLite 有用资源
- SQLite - 快速指南
- SQLite - 有用的资源
- SQLite - 讨论
SQLite - 安装
SQLite 以其强大的零配置功能而闻名,这意味着不需要复杂的设置或管理。本章将带您完成在 Windows、Linux 和 Mac OS X 上设置 SQLite 的过程。
在 Windows 上安装 SQLite
步骤 1 - 转到SQLite 下载页面,然后从 Windows 部分下载预编译的二进制文件。
步骤 2 - 下载 sqlite-shell-win32-*.zip 和 sqlite-dll-win32-*.zip 压缩文件。
步骤 3 - 创建一个文件夹 C:\>sqlite 并解压该文件夹中的两个压缩文件,这将给你 sqlite3.def、sqlite3.dll 和 sqlite3.exe 文件。
步骤 4 - 在 PATH 环境变量中添加 C:\>sqlite,最后转到命令提示符并发出 sqlite3 命令,该命令应显示以下结果。
C:\>sqlite3 SQLite version 3.7.15.2 2013-01-09 11:53:05 Enter ".help" for instructions Enter SQL statements terminated with a ";" sqlite>
在 Linux 上安装 SQLite
如今,几乎所有版本的 Linux 操作系统都附带 SQLite。因此,您只需发出以下命令来检查您的计算机上是否已安装 SQLite。
$sqlite3 SQLite version 3.7.15.2 2013-01-09 11:53:05 Enter ".help" for instructions Enter SQL statements terminated with a ";" sqlite>
如果您没有看到上述结果,则意味着您的 Linux 计算机上没有安装 SQLite。以下是安装 SQLite 的以下步骤 -
步骤 1 - 转到SQLite 下载页面并从源代码部分下载 sqlite-autoconf-*.tar.gz。
步骤 2 - 运行以下命令 -
$tar xvfz sqlite-autoconf-3071502.tar.gz $cd sqlite-autoconf-3071502 $./configure --prefix=/usr/local $make $make install
上面的命令将以在 Linux 计算机上安装 SQLite 结束。您可以按照上面的说明进行验证。
在 Mac OS X 上安装 SQLite
虽然最新版本的 Mac OS X 预装了 SQLite,但如果您没有可用的安装,则只需按照以下步骤操作 -
步骤 1 - 转到SQLite 下载页面,然后从源代码部分下载 sqlite-autoconf-*.tar.gz。
步骤 2 - 运行以下命令 -
$tar xvfz sqlite-autoconf-3071502.tar.gz $cd sqlite-autoconf-3071502 $./configure --prefix=/usr/local $make $make install
上述过程将以在 Mac OS X 计算机上安装 SQLite 结束。您可以通过发出以下命令来验证 -
$sqlite3 SQLite version 3.7.15.2 2013-01-09 11:53:05 Enter ".help" for instructions Enter SQL statements terminated with a ";" sqlite>
最后,您有 SQLite 命令提示符,您可以在其中为练习发出 SQLite 命令。