玩转SQLite2:SQLite命令行基本操作

简介: 本篇介绍SQLite的命令行基本操作

本篇介绍SQLite的命令行基本操作

1 SQLite 点命令

SQLite 的点命令,是一些以点为开头的命令:

1.png

完整的点指令如下:

  • .archive ...  Manage SQL archives
  • .auth ON|OFF  Show authorizer callbacks
  • .backup ?DB? FILE  备份DB数据库(默认是 "main")到 FILE 文件
  • .bail on|off  发生错误后停止,默认为 OFF
  • .binary on|off  Turn binary output on or off.  Default OFF
  • .cd DIRECTORY  Change the working directory to DIRECTORY
  • .changes on|off  Show number of rows changed by SQL
  • .check GLOB  Fail if output since .testcase does not match
  • .clone NEWDB  Clone data into NEWDB from the existing database
  • .connection [close] [#]  Open or close an auxiliary database connection
  • .databases  列出数据库的名称及其所依附的文件
  • .dbconfig ?op? ?val?  List or change sqlite3_db_config() options
  • .dbinfo ?DB?  Show status information about the database
  • .dump ?OBJECTS?  以 SQL 文本格式转储数据库
  • .echo on|off  开启或关闭 echo 命令
  • .eqp on|off|full|...  Enable or disable automatic EXPLAIN QUERY PLAN
  • .excel  Display the output of next command in spreadsheet
  • .exit ?CODE?  以CODE码退出SQLite提示符
  • .expert  EXPERIMENTAL. Suggest indexes for queries
  • .explain ?on|off|auto?  开启或关闭适合于 EXPLAIN 的输出模式,默认是:auto
  • .filectrl CMD ...  Run various sqlite3_file_control() operations
  • .fullschema ?--indent?  Show schema and the content of sqlite_stat tables
  • .headers on|off  开启或关闭头部显示
  • .help ?-all? ?PATTERN?  显示帮助
  • .import FILE TABLE 导入来自 FILE 文件的数据到 TABLE 表中
  • .imposter INDEX TABLE  Create imposter table TABLE on index INDEX
  • .indexes ?TABLE?  显示所有索引的名称
  • .limit ?LIMIT? ?VAL?  Display or change the value of an SQLITE_LIMIT
  • .lint OPTIONS  Report potential schema issues.
  • .load FILE ?ENTRY?  加载一个扩展库
  • .log FILE|off  开启或关闭日志,可以是stderr或stdout
  • .mode MODE ?TABLE?   设置输出模式
  • .nonce STRING  Disable safe mode for one command if the nonce matches
  • .nullvalue STRING  在 NULL 值的地方输出 STRING 字符串
  • .once ?OPTIONS? ?FILE?  Output for the next SQL command only to FILE
  • .open ?OPTIONS? ?FILE?  关闭存在的数据库或重新打开文件
  • .output ?FILE?  Send output to FILE or stdout if FILE is omitted
  • .parameter CMD ...  Manage SQL parameter bindings
  • .print STRING...  逐字地输出 STRING 字符串
  • .progress N  Invoke progress handler after every N opcodes
  • .prompt MAIN CONTINUE  替换标准提示符
  • .quit  退出 SQLite 提示符
  • .read FILE  Read input from FILE
  • .recover  Recover as much data as possible from corrupt db.
  • .restore ?DB? FILE  Restore content of DB (default "main") from FILE
  • .save FILE  Write in-memory database into FILE
  • .scanstats on|off  Turn sqlite3_stmt_scanstatus() metrics on or off
  • .schema ?PATTERN?  Show the CREATE statements matching PATTERN
  • .selftest ?OPTIONS?  Run tests defined in the SELFTEST table
  • .separator COL ?ROW?  Change the column and row separators
  • .session ?NAME? CMD ...  Create or control sessions
  • .sha3sum ...  Compute a SHA3 hash of database content
  • .shell CMD ARGS...  Run CMD ARGS... in a system shell
  • .show  显示各种设置的当前值
  • .stats ?ARG? 开启或关闭统计
  • .system CMD ARGS...  Run CMD ARGS... in a system shell
  • .tables ?TABLE?  List names of tables matching LIKE pattern TABLE
  • .testcase NAME  Begin redirecting output to 'testcase-out.txt'
  • .testctrl CMD ...  Run various sqlite3_test_control() operations
  • .timeout MS  尝试打开锁定的表 MS 毫秒
  • .timer on|off  开启或关闭SQL定时器
  • .trace ?OPTIONS?  Output each SQL statement as it is run
  • .vfsinfo ?AUX?  Information about the top-level VFS
  • .vfslist  List all available VFSes
  • .vfsname ?AUX?  Print the name of the VFS stack
  • .width NUM1 NUM2 ...  Set minimum column widths for columnar output

例如,使用.show指令可以查看当前的各种设置:

2.png

2 SQLite 创建数据库

使用sqlite3 命令来创建数据库有两种方式

2.1 方式1:sqlite3+数据库名

例如,使用sqlite3 test1.db创建test1数据库,然后使用.databases查看数据库

.3.png

2.2 方式2:使用.open命令

例如,使用.open test2.db创建test2数据库

4.png

2.3 将数据库导出到文件

使用 .dump 点命令导出数据库到文本文件中

sqlite3 test1.db.dump > test1.sql

也可以从生成的 testDB.sql 恢复:

sqlite3 test1.db < test1.sql

5.png

3 SQLite 创建表

可以通过CREATE TABLE语句来创建表,其基本语法为:

CREATETABLE database_name.table_name(

  column1 datatype  PRIMARY KEY(one or more columns),

  column2 datatype,

  column3 datatype,

  .....

  columnN datatype,

);

例如,创建一个 COMPANY 表,ID 作为主键,NOT NULL 的约束表示在表中创建纪录时这些字段不能为 NULL:

sqlite> CREATETABLE COMPANY(

  ID INT PRIMARY KEY     NOTNULL,

  NAME           TEXT    NOTNULL,

  AGE            INT     NOTNULL,

  ADDRESS        CHAR(50),

  SALARY         REAL

);

然后可以使用.tables命令来验证表是否已成功创建

sqlite>.tables

COMPANY

6.png

也可以使用.schema命令得到表的完整信息

sqlite>.schema COMPANY

CREATETABLE COMPANY(

  ID INT PRIMARY KEY     NOTNULL,

  NAME           TEXT    NOTNULL,

  AGE            INT     NOTNULL,

  ADDRESS        CHAR(50),

  SALARY         REAL

);

7.png

最后将数据库导出到.sql文件查看:

8.png

相关文章
|
4天前
|
关系型数据库 MySQL 数据库
Python处理数据库:MySQL与SQLite详解 | python小知识
本文详细介绍了如何使用Python操作MySQL和SQLite数据库,包括安装必要的库、连接数据库、执行增删改查等基本操作,适合初学者快速上手。
51 15
|
1月前
|
存储 SQL 数据库
数据库知识:了解SQLite或其他移动端数据库的使用
【10月更文挑战第22天】本文介绍了SQLite在移动应用开发中的应用,包括其优势、如何在Android中集成SQLite、基本的数据库操作(增删改查)、并发访问和事务处理等。通过示例代码,帮助开发者更好地理解和使用SQLite。此外,还提到了其他移动端数据库的选择。
38 8
|
2月前
|
Web App开发 SQL 数据库
使用 Python 解析火狐浏览器的 SQLite3 数据库
本文介绍如何使用 Python 解析火狐浏览器的 SQLite3 数据库,包括书签、历史记录和下载记录等。通过安装 Python 和 SQLite3,定位火狐数据库文件路径,编写 Python 脚本连接数据库并执行 SQL 查询,最终输出最近访问的网站历史记录。
36 4
|
2月前
|
存储 关系型数据库 数据库
轻量级数据库的利器:Python 及其内置 SQLite 简介
轻量级数据库的利器:Python 及其内置 SQLite 简介
64 3
|
2月前
|
应用服务中间件 PHP Apache
PbootCMS提示错误信息“未检测到您服务器环境的sqlite3数据库扩展...”
PbootCMS提示错误信息“未检测到您服务器环境的sqlite3数据库扩展...”
|
3月前
|
存储 API 数据库
QML使用Sqlite数据库存储ListModel数据
本文介绍了在QML中使用Sqlite数据库存储ListModel数据的方法,包括如何创建数据库、读取数据、动态添加和删除数据,以及如何在程序启动和退出时与数据库同步数据。
|
3月前
|
数据库 数据库管理
qt对sqlite数据库多线程的操作
本文总结了在Qt中进行SQLite数据库多线程操作时应注意的四个关键问题,包括数据库驱动加载、加锁、数据库的打开与关闭,以及QsqlQuery变量的使用。
209 1
|
2月前
|
存储 缓存 关系型数据库
sqlite 数据库 介绍
sqlite 数据库 介绍
44 0
|
4月前
|
人工智能 小程序 Java
【工具】轻松解锁SQLite数据库,一窥微信聊天记录小秘密
本文介绍了一款名为PyWxDump的开源工具,它可以获取微信账户信息、解密SQLite数据库以查看和备份聊天记录。此工具适用于已登录电脑版微信的用户,通过GitHub下载后简单几步即可操作。适合对数据恢复感兴趣的开发者,但请注意合法合规使用并尊重隐私。
576 2
【工具】轻松解锁SQLite数据库,一窥微信聊天记录小秘密
|
4月前
|
关系型数据库 Java MySQL
C#winform中使用SQLite数据库
C#winform中使用SQLite数据库
203 3
C#winform中使用SQLite数据库