本篇介紹SQLite的命令行基本操作
1 SQLite 點命令
SQLite 的點命令,是一些以點為開頭的命令:
完整的點指令如下:
.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 SQLite 創建數據庫
使用sqlite3 命令來創建數據庫有兩種方式
2.1 方式1:sqlite3+數據庫名
例如,使用sqlite3 test1.db
創建test1數據庫,然后使用.databases
查看數據庫
.
2.2 方式2:使用.open
命令
例如,使用.open test2.db
創建test2數據庫
2.3 將數據庫導出到文件
使用 .dump
點命令導出數據庫到文本文件中
sqlite3 test1.db .dump > test1.sql
也可以從生成的 testDB.sql 恢復:
sqlite3 test1.db < test1.sql
3 SQLite 創建表
可以通過CREATE TABLE語句來創建表,其基本語法為:
CREATE TABLE database_name.table_name(
column1 datatype PRIMARY KEY(one or more columns),
column2 datatype,
column3 datatype,
.....
columnN datatype,
);
例如,創建一個 COMPANY 表,ID 作為主鍵,NOT NULL 的約束表示在表中創建紀錄時這些字段不能為 NULL:
sqlite> CREATE TABLE COMPANY(
ID INT PRIMARY KEY NOT NULL,
NAME TEXT NOT NULL,
AGE INT NOT NULL,
ADDRESS CHAR(50),
SALARY REAL
);
然后可以使用.tables
命令來驗證表是否已成功創建
sqlite>.tables
COMPANY
也可以使用.schema
命令得到表的完整信息
sqlite>.schema COMPANY
CREATE TABLE COMPANY(
ID INT PRIMARY KEY NOT NULL,
NAME TEXT NOT NULL,
AGE INT NOT NULL,
ADDRESS CHAR(50),
SALARY REAL
);
最后將數據庫導出到.sql文件查看:
end
審核編輯:湯梓紅
-
SQlite
+關注
關注
0文章
78瀏覽量
15936 -
命令行
+關注
關注
0文章
77瀏覽量
10385
發布評論請先 登錄
相關推薦
評論