What SQL can be used to list the tables, and the rows within those tables, in a SQLite database file once i've ATTACHed it on the sqlite3 command line tool?
|
|
It appears you need to go through the *sqlite_master* table, like this:
And then manually go through each table with a SELECT or similar to look at the rows. The .DUMP and .SCHEMA commands doesn't appear to see the database at all. |
|||||||||||
|
|
The are a few steps to see the tables in an SQLite database:
Will list the tables in your database
will list how the table looks and a
will print the entire table.
to list all of the available SQLite prompt commands. |
|||||||||||||||||||||
|
|
To show all tables, use
To show all rows, I guess you can iterate through all tables and just do a SELECT * on each one. But maybe a DUMP is what you're after? |
|||
|
|
|
Use .help to check for available commands.
This would show all tables under your current database. |
|||
|
|
|
There is a command available for this on the sqlite command line.
Which converts to the following SQL
|
|||
|
|
|
Try |
|||||
|
|
To list the tables you can also do:
|
||||
|
|
|
The
then you need to do
Note that temporary tables don't show up with
|
|||
|
|
|
The easiest way to do this is to open the database directly and use the .dump command, rather than attaching it after invoking the sqlite3 shell tool So... (assume your o/s command line prompt is $) instead of $sqlite3 sqlite3> ATTACH database.sqlite as "attached" from your o/s command line, open the database directly $sqlite3 database.sqlite sqlite3> .dump |
|||
|
|
|
According to the documentation, the equivalent of MySQLs'
However, if you are checking if a single table exists (or to get its details), see @LuizGeron answer. |
|||
|
|
|
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); |
|||
|
|
protected by Community♦ Sep 17 '11 at 23:31
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.