I need to read data from two CSV files and load them into SQLite3 in two different tables. I then want to query the two tables and create a new dataset that needs to be output into a new CSV/Excel. What would be the best way to go about doing this?
I am thinking of a combination of SQLite3, Sequel, and FasterCSV.
There is also a CSV2SQLite gem, but I'm not sure how to use it.
Also, if anyone has code snippets, that would be really appreciated.
BOOM reading csv files and creating a table with sequel ruby gem.