Page cover

SQLite

Show Lines from table
sqlite3 -line /databases/cat.db '.tables'
Connect to the database
sqlite3 gitea.db
Show tables
.tables
Turn headers on
.headers on
Show schema
PRAGMA table_info(TableName);
Show all content from users table
select * from user;

Last updated