Everything,
I am trying to enter a long text entry into a SQLite database in a TEXT field. This text has new lines in it (i.e., it covers several paragraphs).
I can get new lines if I do INSERT manually:
INSERT INTO "LOGENTRY" VALUES(5,40,'PLACE','line1 line2 line4 ',1283990533315,'4A','TEXT','',NULL);
but if I have equivalent text in a CSV file and try to import it into a table, I get a message that it expects more columns than exists (as soon as a new line is encountered, the program assumes the end of the input and, therefore, the absence of columns).
Is it possible? Or is this the only way to manually execute each INSERT?
android string database sqlite
I82Much
source share