如何以编程方式获取sqlite中所有可用表的列表?
答案 0 :(得分:20)
试试这个:
SELECT * FROM sqlite_master where type='table'
答案 1 :(得分:6)
使用以下sql语句获取sqlite数据库中所有表的列表
SELECT * FROM dbname.sqlite_master WHERE type='table';
之前在StackOverFlow上提出了同样的问题。
How to list the tables in an SQLite database file that was opened with ATTACH?
答案 2 :(得分:2)
为我工作
SELECT * FROM sqlite_master where type='table'