Ahh, hmm, ATTACH, ok
It appears you need to go through the *sqlite_master* table, let me try like thisonce more... Hang on...
Try the command:
.HELP
SELECT * FROM dbname.sqlite_master WHERE type='table';
And you'll see that the command to see then manually go through each table with a pure schematic representation of your database is:
.SCHEMA
And SELECT or similar to dump a table:
.DUMP tablename
To dump all tables, just ommit the tablename from look at the rows.
The .DUMP commandand .SCHEMA commands doesn't appear to see the database at all.
