sqlite 判断表是否存在并创建

来源:互联网 发布:protobuf.min.js 编辑:程序博客网 时间:2024/06/05 04:04
create table if not exists MessageLogTable_2 (ID integer primary key autoincrement not null,
tojid varchar(200),fromjid varchar(200),
timestamp timestamp,remark,data text,type int,body text) 
0 0