You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From Manna Energy
null fields show in the briefcase csv as nothing so you end up with a bunch of
commas in a row when there is a null value from an optional field that was
skipped. This, combined with the fact all the other fields with values have
quotation marks, makes it difficuilt to parse the csv via delimiters. Cant use
commas because those can be in the strings as well, but you cant use "," either
because the null fields are lacking quotes. We had to resort to some craftyness
to properly delimit the csv.
Original issue reported on code.google.com by [email protected] on 20 May 2011 at 10:13
The text was updated successfully, but these errors were encountered:
There's actually an RFC describing CSV file formats.
The complaints are a critique of the CSV file format, which Briefcase adheres
to:
http://tools.ietf.org/html/rfc4180
Changing to documentation.
Original issue reported on code.google.com by
[email protected]
on 20 May 2011 at 10:13The text was updated successfully, but these errors were encountered: