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
The ".schema" commando will list available tables and their rows, by showing you the statement used to create said tables:
sqlite> create table_a (id int, a int, b int); sqlite> .schema table_a CREATE TABLE table_a (id int, a int, b int);