Skip to main content

If you have the sqlite database, use the sqlite3 command line program and thethese commands:
.tables - to

To list all the tables in the database
.schema tablename - to:

.tables 

To show the schema for thea given table
tablename:

.schema tablename 

If you have the sqlite database, use the sqlite3 command line program and the commands:
.tables - to list all the tables in the database
.schema tablename - to show the schema for the given table

If you have the sqlite database, use the sqlite3 command line program and these commands:

To list all the tables in the database:

.tables 

To show the schema for a given tablename:

.schema tablename 
Source Link
Truls Unstad
Truls Unstad

If you have the sqlite database, use the sqlite3 command line program and the commands:
.tables - to list all the tables in the database
.schema tablename - to show the schema for the given table