Forrest logo
back to context overview

sqlite

List of commands for sqlite:

  • sqlite:db::create Create an empty sqlite db
    $ sqlite3 {db_filepath} "VACUUM;"
    try on your machine
    explain this command
  • sqlite:dump:schema Dump sqlite schema into a .sql file
    $ sqlite3 ${db_filepath} .schema > ${output_sql_filename}
    try on your machine
back to context overview