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 list the tables you can also do:
SELECT name FROM sqlite_master WHERE type='table';