关于iphone:如何以编程方式获取sqlite中所有表的列表

How to get list of all the tables in sqlite programmatically

如何以编程方式获取sqlite中所有可用表的列表?


试试这个:

1
SELECT * FROM sqlite_master where type='table'


使用下面的SQL语句获取sqllite数据库中所有表的列表

1
SELECT * FROM dbname.sqlite_master WHERE type='table';

在StackOverflow上同样的问题。

如何列出用attach打开的sqlite数据库文件中的表?


为我工作

1
    SELECT * FROM sqlite_master where type='table'