SQLite创建一个空白的数据库,具有被识别为有效的SQLite数据库的优势,比touch创建一个空文件好。
sqlite3 aFile.db "create table aTable(field1 int); drop table aTable;"
可以通过以下方式进行验证:
sqlite3 aFile.db ".databases"
标签:SQLite,空白,创建,数据库,aTable,table
From: https://www.cnblogs.com/faberbeta/p/16951762.html