Popular `sqlite` terminal commands
Create an empty sqlite db
Uses the VACUUM command to create a valid empty SQLite database file.
Authored by: emkey08
Dump sqlite schema into a .sql file
Dumbs the entire schema of a given SQLite database into a new file.
Authored by: CL.
Export SQLite query to a CSV file
Executes a sql query against the given SQLite database and outputs the the results to a CSV file.
Authored by: rorro