sudo apt-get install sqlite3
sqlite3 -version
sqlite3 -help
目录下存在test.db文件,则会打开该数据库文件,若不存在,则会创建一个数据库文件,并进入数据库操作。
sqlite3 test.db
可视化工具spatialite-gui。
Ubuntu安装命令
sudo apt install spatialite-gui
Mac安装命令
brew install spatialite-gui
终端直接运行命令。
spatialite-gui
查看数据库
.database
创建数据表
create table student(name varchar(10), age smallint);
查看数据表
.table
插入数据
insert into student values('fck', 21);
查询数据
select * from [table name];
清空数据
delete from [table name];
退出数据库
.exit;