I ran the following command in SQLITE3 command line tool.
sqlite> .import out.txt Test
And the following is the result:
sqlite> .import out.txt Test
...>
“…>” keeps showing up if I hit enter. It looks like it’s expecting another parameter, except I can’t find anything on Google.
Thanks always
By default, sqlite3’s
.importexpects tab-delimited data. You can change it with.separator.An example: