sqlite
一帘忧梦
喜欢追着阳光跑的人
展开
-
sqlite3 查询表结构信息
select sql from sqlite_master where name='tewms_data1';参考sqlite3获取所有表名 和某个表所有字段原创 2022-04-18 11:07:47 · 1720 阅读 · 0 评论 -
linux c sqlite3插入utc时间
#建表(插入utc时间) create table if not exists table7 (OrderNum integer primary key autoincrement,Data text[CreatedTime],TimeStamp NOT NULL DEFAULT (strftime('%s','now'))); 插入 insert into table7 (Data)values("1"); 查询 select * from table7 另:插入日...原创 2022-03-22 08:59:10 · 1028 阅读 · 0 评论 -
sqlite3 使用
sqlite3的使用:1. 创建数据库创建数据库 sqlite3 test.db打开一个已经存在的数据库 sqlite3 test.db查询 db文件是否存在 .databases2. 创建表create table if not exists plcdata (OrderNum integer primary key autoincrement,Data text)...原创 2020-03-24 15:41:16 · 155 阅读 · 0 评论