How to get list of all the tables in sqlite programmatically

后端 未结 3 670
孤街浪徒
孤街浪徒 2021-02-08 00:10

How can I get the list of all the available tables in sqlite programmatically?

3条回答
  •  挽巷
    挽巷 (楼主)
    2021-02-08 01:08

    worked for me

        SELECT * FROM sqlite_master where type='table'
    

提交回复
热议问题