I\'m trying to find out a way to find the names of tables in a database(if any exist). I find that from a sqlite cli I can use:
>.tables
To get the schema information, IMHO, below also works:
select sql from sqlite_master where type='table';