如何从sqlite DB列出表名 – Android

How to list the table name from sqlite DB — Android

本问题已经有最佳答案,请猛点这里访问。

我刚接触Android sqlite。我想得到一个特定数据库中的表列表。这在sqlite中是可能的吗?有人能指导我吗?我找了很长时间才知道。

例如:我的数据库名是abc,因为我有10个不同的表,我想从那个特定的数据库中得到表名的列表。提前谢谢


您需要查询模式ABCsqlite_master表。

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