SQLite判断表是否存在:其实很简单,只要查看sqlite_master表中是否存在这条数据就可以知道了。SELECT count(*) FROM sqlite_master WHERE type='table' AND name='tableName';