一、简介
SQLite是一种嵌入式数据库,它的数据库就是一个文件。由于SQLite本身是C写的,而且体积很小,所以,经常被集成到各种应用程序中,甚至在iOS和Android的App中都可以集成。
二、常见命令
- 打开数据库
sqlite3
## 或者
sqlite3 xx.db
- 查看数据库
.databases
- 查看有哪些表
.tables
- 查看表的结构
.schema xxx
- 格式化输出
sqlite>.header on
sqlite>.mode column
sqlite>.timer on
- 导出数据库
$sqlite3 testDB.db .dump > testDB.sql
- SQLite命令提示符的默认设置
.show