What SQL can be used to list the tables, and the rows within those tables in an SQLite database file - once I have attached it with the
Via a union all, combine all tables into one list.
union all
select name from sqlite_master where type='table' union all select name from sqlite_temp_master where type='table'