Add generation of insert statements to csvsql
Created by: onyxfish
Should be able to do:
csvsql --insert test.csv | psql
To create a table and load data.
This is very difficult as sqlalchemy dialects only generate parameterized insert statements. Would need to either substitute actual values in (different for each dialect) or find another way of creating insert statements. (Or not use sqlalchemy.)