找到已经存在的所有表,手动判断是否需要建表
SELECT name FROM SQLITE_MASTER WHERE type='table'ORDER BY name"
建表时sqlite自动判断:
create table if not exists nodetype(id integer PRIMARY KEY autoincrement,type int)
删除表示自动判断:
drop table if exists SysNotice
找到已经存在的所有表,手动判断是否需要建表
SELECT name FROM SQLITE_MASTER WHERE type='table'ORDER BY name"
建表时sqlite自动判断:
create table if not exists nodetype(id integer PRIMARY KEY autoincrement,type int)
删除表示自动判断:
drop table if exists SysNotice