
sqlite
List of commands for sqlite:
-
sqlite:db::create Create an empty sqlite db$ sqlite3 {db_filepath} "VACUUM;"try on your machineexplain this command
-
sqlite:dump:schema Dump sqlite schema into a .sql file$ sqlite3 ${db_filepath} .schema > ${output_sql_filename}try on your machine