Displaying 1 result from an estimated 1 matches for "csv_options".
Did you mean:
  as_options
  
2009 Jun 17
12
FasterCVS and Rails
...etting a MalformedCSVError:
"Unclosed quoted field on line 1."
"/ruby/lib/ruby/gems/1.8/gems/fastercsv-1.2.3/lib/faster_csv.rb:1592:in
`shift''"
I''ve tested the same code outside of the Rails application an it works
fine.
Can anyone help me?
Here is the code:
csv_options  = {
  :headers => false,
  :return_headers => false,
  :skip_blanks => false
}
csv_file_name = File.dirname(__FILE__) + "/../../Files.TXT"
data = ""
FasterCSV.foreach(csv_file_name, csv_options) do |row|
  data << row.to_s + "<br>"
end
And the f...