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
Use:
import sqlite3 TABLE_LIST_QUERY = "SELECT * FROM sqlite_master where type='table'"