Delphi 获取sqlite中所有的表名

取得sqlite数据库里所有的表名

查询table,type 段是'table',name段是table的名字, so:

select name from sqlite_master where type='table' order by name;

原文地址:https://www.cnblogs.com/zhangzhifeng/p/5685077.html