Best answer to the question Use PRAGMA table_info
This pragma returns one row for each column in the named table. Columns in the result set include the column name, data type, whether or not the column can be NULL, and the default value for the column. The “pk” column in the result set is zero for columns that are not part of the primary key, and is the index of the column in the primary key for columns that are part of the primary key.
Reference:http://www.sqlite.org/pragma.html#pragma_table_info
1 2 3 4 5 6 7 8 | sqlite> .header on sqlite> PRAGMA table_info(password); cid|name|type|notnull|dflt_value|pk 0|_id|INTEGER|0||1 1|host|TEXT|0||0 2|username|TEXT|0||0 3|password|TEXT|0||0 #password is the name of a table. |
---|
Another answer may also work .schema [tablename] will show the CREATE statement(s) for a table or tables
1 2 | sqlite> .schema password CREATE TABLE password (_id INTEGER PRIMARY KEY, host TEXT, username TEXT, password TEXT, UNIQUE (host, username) ON CONFLICT REPLACE); |
---|
Others
- Android SQLite Essentials