答案 0 :(得分:1)
您可以执行'table_info'编译指示。
db:exec("pragma table_info('Publication');") --check for table 'Publication'
答案 1 :(得分:1)
您还可以查询表sqlite_master
以查找您的表格,例如:
found=false
db:exec([[select * from sqlite_master where name='my_table';]],
function(...) print(...) found=true return 0 end)
if found then print'table exists!' end