SQLite have sqlite_master table , which contain all meta data about tables.
sqlite_master have following field ::
rowid :: primary key , integer , Auto Increment
type :: table
name :: alias of table name
tbl_name :: table name
rootpage :: root page
sql :: sql query for create table .
SQLite Query
select tbl_name from sqlite_master
it will give table name list of particular database