SQLite

Show Lines from table
sqlite3 -line /databases/cat.db '.tables'
Basic Commands
Connect to the database
sqlite3 gitea.db
Show tables
.tables
Turn headers on
.headers on
Show all content from users table
select * from user;

Last updated