db-to-sqlite
db-to-sqlite copied to clipboard
CLI tool for exporting tables or queries from any SQL database to a SQLite file
Translating from mssql the datetime fields get translated into text. I'd like, at least the option, to translate them into milliseconds since epoch.
When there is no data in the table, the PRIMARY KEY is not copied into the sqlite database.
The --no_data [table name] argument will copy only the schema, but not any data for the named table. It works similar to the --skip argument in that it can be...