|
|
|
|
|
by aeonik
618 days ago
|
|
AFAIU CSV is fundamentally ambiguous and can't actually be parsed in a fully deterministic way. Edge cases get hard when dealing with nested commas, and there's no standard escape sequence. Probably matters less with a two column arrangement, but things get really hairy really fast when you start adding types or BLOBs in the CSV. |
|
>but things get really hairy really fast when you start adding types or BLOBs in the CSV.
AFAIK BLOBs are hex encoded, which make them a non issue.