通过检索SQLite的内置表sqlite_master,查询是否有需要检索的表信息,即可得出该表是否存在。
SELECT * FROM sqlite_master WHERE type='table' AND name = 'config_info';