Hello G.s,
May be it is simply but any way… fasterCSV 1.2.0
how to load data from file to table I have tried this:
file has just one line 1,2,3
data = FCSV.read(“C:\temp_file.csv”)
table = FCSV.parse(data, :headers => true)
puts "data overview"
puts data
puts "table overview"
puts table
but got very strange error:
undefined method pos' for #<Array:0xcb2e114> (<-- this is for another big file) for file with 1,2,3 it shows: undefined methodpos’ for [[“1”, “2”, “3”]]:Array