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
To show all tables, use
SELECT name FROM sqlite_master WHERE type = "table"
To show all rows, I guess you can iterate through all tables and just do a SELECT * on each one. But maybe a DUMP is what you're after?