Re: [sqlite] How to import TSV table with double quote in it without having to escape double quote

2018-09-24 Thread Clemens Ladisch
Peng Yu wrote: > I don't want to escape the quote charaters in the input. Is there still > a way to import quote characters into a sqlite3 table? The CSV import hardcodes " as quote. You could try the ASCII import instead. Regards, Clemens ___

[sqlite] How to import TSV table with double quote in it without having to escape double quote

2018-09-23 Thread Peng Yu
Hi, I got the following error. I don't want to escape the quote charaters in the input. Is there still a way to import quote characters into a sqlite3 table? $ cat my.sql3 create table mytab (var text); .separator "\t" .import /dev/stdin mytab $ cat main.sh #!/usr/bin/env bash # vim: set