I have multiple text files that I would like to import into a virtual FTS table in SQLite. The documentation here mentions inserting ~500,000 files from the Enron email dataset into a single table.
I do not understand how this was done.
Oreilly here says just use INSERT, UPDATE, DELETE, but it is not clear to me how to get content from multiple external files this way.
Is an external script that calls SQLite from the command line with .insert the best way?
If so, how do I prevent arbitrary text in the files from being interpreted as a new column??
Many thanks in advance for your help!