simonw / csvs-to-sqlite

Convert CSV files into a SQLite database
Apache License 2.0
878 stars 69 forks source link

added --just-strings feature, to import columns as strings by default #58

Closed dannguyen closed 4 years ago

dannguyen commented 5 years ago

When the --just-strings flag is specified, then all columns will be imported and typecast as text strings. However, --shape, --date, --datetime, and --datetime-format options are still valid, and specified columns will be typecast as before.

Inspired by this issue: Interpret all columns as TEXT data type #42

simonw commented 4 years ago

This is a smart feature, thanks.