2018年5月15日的sqlite安装和数据库记录

sqlite数据库安装在d:sqlite_files
运行sqlite3
查看数据表,命令,.tables

数据库文件 d:sqlite_filesdevice.db

create table device
(
id text,
device_no text,
device_name text,
owner text,
register_date text
)

设备编码
设备名称
责任人
登记日期

原文地址:https://www.cnblogs.com/strongdady/p/9041492.html