sqlite3如何判断某个表是否创建

前端之家收集整理的这篇文章主要介绍了sqlite3如何判断某个表是否创建前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在执行建表语句的时候加上if not exists table_name


create table if not exists history(_id integer primary key AUTOINCREMENT,page integer not null,introduce text,book text,record_uri text)

这样去数据的时候就不会报错。

原文链接:https://www.f2er.com/sqlite/200415.html

猜你在找的Sqlite相关文章