show/hide this revision's text 2 deleted 106 characters in body

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.

show/hide this revision's text 1

Ahh, hmm, ATTACH, ok, let me try this once more... Hang on...


Try the command:

.HELP

And you'll see that the command to see a pure schematic representation of your database is:

.SCHEMA

And to dump a table:

.DUMP tablename

To dump all tables, just ommit the tablename from the .DUMP command.