- .nullvalue STRING 用STRING代替null值显示,不难理解,就不再累述了。
- .output FILENAME 设置把查询输出到文件,后面的输出结果都保存到文件中,如: 可以在F盘下发现建立了websites.txt文件,其内容如下:
- .output stdout 设置把查询结果输出到屏幕,这是默认输出方式。如:
- .quit 退出sqlite程序,同.exit命令
- .read FILENAME Execute sql in FILENAME 执行文件中的sql语句,文件中的语句一定要带上分号(;).
我们在F盘下建sqldata.txt文件,其内容为:insert into websites(WebName) values('测试插入数据0');我们执行.read命令如下:
insert into websites(WebName) values('测试插入数据1');
select * from websites; - .schema ?TABLE? Show the Create statements 以sql格式输出表结构,如:
- .separator STRING Change separator used by output mode and .import 修改分隔符,如:
- .show Show the current values for varIoUs settings 显示配置信息,如:
- .tables ?PATTERN? List names of tables matching a LIKE pattern 显示库中表的列表。
- .timeout MS Try opening locked tables for MS milliseconds 超时时间,单位:毫秒
- .width NUM NUM ... Set column widths for "column" mode 设置列宽,举例见上文.explain命令。