How can I get the list of all the available tables in sqlite programmatically?
try this :
SELECT * FROM sqlite_master where type='table'