I have around 3000 CSV files, each one have 200 entries. So, in total, 600,000 entries.
I want to import all these files into SQLite DB (I am using SQLite Manager in Firefox).
What is the best approach to do this? Later on I will need to read SQLite tables into R code, so I should take it into account when importing the files into DB. For instance, is it a good idea to import all files into the same table? Or, is it better to import each file into a separate table (in this case how to automate this process)?