Tagged Questions

Popular Ruby library/gem for working with CSV format files.

learn more… | top users | synonyms

20
votes
1answer
5k views

What is Ruby 1.9 standard csv library?

When I try the FasterCSV gem on my application I have this error: Please switch to Ruby 1.9's standard CSV library. It's FasterCSV plus support for Ruby 1.9's m17n encoding engine. By The ...
6
votes
2answers
2k views

fastercsv error with ruby 1.9.2

I have an existing rails application I'm running on ruby 1.9.2 and linux its rails version is rails 2.3.8 and it has a GEMFILE as well, in its vendor/gems directory it has 'fastercsv-1.5.4' gem ...
6
votes
1answer
2k views

Example Application of FasterCSV

I'm very new to Ruby on Rails and web programming as well. Can someone show me some example of FasterCSV implementation.
5
votes
2answers
208 views

Using Ruby CSV creates Rails Records where string fields aren't queryable

I am trying to load seed data into my Rails application from a CSV file. I initially installed the fastercsv gem, only to find out that fastercsv has been deprecated in favor of the CSV library as of ...
5
votes
2answers
814 views

How to pre-process CSV data for FasterCSV?

We're having a significant number of problems creating a bulk upload function for our little app. We're using the FasterCSV gem to upload data to a MySQL database but he Faster CSV is so twitchy and ...
5
votes
3answers
3k views

Overcoming a basic problem with CSV parsing using the FasterCSV gem

I have found a CSV parsing issue with FasterCSV (1.5.0) which seems like a genuine bug, but which I'm hoping there's a workaround for. Basically, adding a space after the separator (in my case a ...
3
votes
1answer
173 views

Error parsing CSV with FasterCSV gem (MalformedCSVError)

FasterCSV is raising MalformedCSVError (Illegal Quoting) in this line: |0150|1161623|Medicamentos e genericos "EPP".|1423|PB| This is the code: FasterCSV.foreach(path_to_file, :col_sep => '|') ...
3
votes
3answers
420 views

FasterCSV: Check wether a file is invalid before accepting it - is there a simpler way?

I'm using FasterCSV on a Ruby on Rails application and currently it throws an Exception if the file is invalid. I've looked over the FasterCSV doc, and it seems that if I use FasterCSV::parse with a ...
3
votes
1answer
482 views

Using Ruby's fastercsv with character encodings

Using Ruby 1.8.7, I want to accept csv's into my system, even though this is an admin application, it seems I can get several different types of csvs. On my mac if I export from excel using "windows ...
2
votes
1answer
71 views

Faster CSV + trying to find unique items

I have a csv file where I'm trying to find all the uniq values in columns past column 2 where column 1 has the same value and consolidate that in a new csv file. I know, that sounds way confusing so ...
2
votes
3answers
118 views

FasterCSV: several separators

My Rails3 app parses user-uploaded CSV files. As can be expected, users upload tab-separated AND comma-separated files. I want to support both. My code: input = CSV.read(uploaded_io.tempfile, { ...
2
votes
1answer
131 views

How do you prevent Rails from encoding entities in FasterCSV output?

I'm using FasterCSV to produce CSV output of my reports in a Rails 3 application. Here's a code snippet: <%= FasterCSV.generate do |csv| @groups.each do |b| record = [ b.group, ...
2
votes
1answer
214 views

fasterCsv exception handling

I am facing the MalformedCSVError problem in csv file .And the line is given below where I am stuck: "# literally hundreds of sources of "IP-to-Country" databases available. Man" Because the line ...
2
votes
1answer
1k views

Having issues importing a CSV File using FasterCSV

I am new to Rails and I have figured out how to export results from my Database but I am having issues creating new records from a CSV File. With the code listed below I want to be able to import a ...
2
votes
2answers
833 views

Best way to read CSV in Ruby. FasterCSV?

I have a CSV file that I want to read with Ruby and create Ruby objects to insert into a MySQL database with Active Record. What's the best way to do this? I see two clear options: FasterCSV & the ...
2
votes
1answer
341 views

FasterCSV importer to DataMapper model - No rows inserted

I have a model (called Test): property :id, Serial property :title, String, :length => 255, :required => true property :description, String, :length => 255, ...
2
votes
3answers
936 views

Proper way to parse this line with FasterCSV?

I have the following line in a CSV file that's giving me issues when parsing: 312,'997639',' 2','John, Doe. "J.D." ',' ','2000 ',' ','Street ...
2
votes
1answer
3k views

How do you change headers in a CSV File with FasterCSV then save the new headers?

I'm having trouble understanding the :header_converters and :converters in FasterCSV. Basically, all I want to do is change column headers to their appropriate column names. something like: ...
2
votes
2answers
948 views

Generating fields containing newline with Ruby CSV::Writer

I want to make CSV::Writer generate a line break within a quoted string: A,B,"Line Line",C So that the row would display in Excel as: A,B,Line,C Line Is it possible to prevent CSV:Writer ...
2
votes
5answers
4k views

FasterCSV: Read Remote CSV Files

I can't seem to get this to work. I want to pull a CSV file from a different webserver to read in my application. This is how I'd like to call it: url = 'http://www.testing.com/test.csv' records = ...
2
votes
4answers
3k views

RoR: FasterCSV to hash

I'm really struggling with grasping how to effectively use FasterCSV to accomplish what I want. I have a CSV file; say: ID,day,site test,tuesday,cnn.com bozo,friday,fark.com god,monday,xkcd.com ...
1
vote
1answer
58 views

Wrong output in fastercsv? Too many " in Ruby

I am implementing in Ruby, and I just want to read in a CSV-file. My CSV looks like : "official_code","username","lastname","firstname","email","Course Groups","password" ...
1
vote
2answers
148 views

merge CSV files on a common field with ruby/fastercsv

I have a 'master' file with a number of columns: 1 2 3 4 5. I have a few other files, with fewer rows than the master file, each with columns: 1 6. I'd like to merge these files matching on the column ...
1
vote
2answers
171 views

How do i skip over the first three rows instead of the only the first in FasterCSV

I am using FasterCSV and i am looping with a foreach like this FasterCSV.foreach("#{Rails.public_path}/uploads/transfer.csv", :encoding => 'u', :headers => :first_row) do |row| but the ...
1
vote
1answer
75 views

trying to get the delta between columns using FasterCSV

A bit of a noob here so apologies in advance. I am trying to read a CSV file which has a number of columns, I would like see if one string "foo" exists anywhere in the file, and if so, grab the ...
1
vote
2answers
97 views

What's the meaning of the headers when adding a CSV::Row to a CSV::Table in Ruby 1.9?

I am trying to add a row to a CSV::Table in Ruby 1.9 (the questions also applies to FasterCSV in Ruby 1.8). If the order of the columns is different in the new row than in the table, the elements are ...
1
vote
3answers
390 views

FasterCSV tutorial to import data to database?

Is anyone aware of any tutorials that demonstrate how to import data in a Ruby app with FasterCSV and saving it to a SQLite or MySQL database? Here are the specific steps involved: Reading a file ...
1
vote
1answer
452 views

rails 3 ruby 1.9.2 CSV “already initialized constant ..” warning

I want to add the ability to read/write data to a CSV file to one of my models. In versions of ruby prior to 1.9 this would have been done with fasterCSV, but this is now part of ruby. I have the ...
1
vote
1answer
321 views

How to remove the ' quote from string?

I am trying to upload some data from my csv to the database using fastercsv. here is how my csv looks like: ...
1
vote
3answers
540 views

Problems trying to parse CSV file with umlaut's etc in it using Ruby 1.8 / FasterCSV

I have a CSV file with lines like this in it: ...,"Städtische Galerie im Lenbachhaus",... I am using Ruby 1.8, with the FasterCSV gem, like so: FasterCSV.foreach(file, :encoding => 'u', ...
1
vote
1answer
249 views

Changing Output for FasterCSV

I currently have a controller that will handle a call to export a table into a CSV file using the FasterCSV gem. The problem is the information stored in the database isn't clear sometimes and so I ...
1
vote
1answer
715 views

FasterCSV and Non-Latin Characters

Iv recently written code that will help me export an SQL database into CSV using FasterCSV with rails. However some parts of my database contain Traditional Chinese Characters. When I export it i'm ...
1
vote
4answers
2k views

Heroku file upload problem

I've been having a problem uploading a CSV file to Heroku and processing it. It works fine in my local environment. Just do be clear, I don't need to save the file on Heroku, just access it during the ...
1
vote
1answer
71 views

Importing issues for products

Ok so I am trying to import a csv which I need to insert into a db through rails or anyway that would be quickest so i decided to create a dummy rails application to do the importing. Here is some of ...
1
vote
2answers
1k views

Headers on the second row in FasterCSV?

G'day guys, I'm currently using fasterCSV to parse a CSV file in ruby, and wondering how to get rid of the initial row of data on a CSV (The initial row contains the time/date information generated by ...
1
vote
1answer
150 views

FasterCSV Parsing issue?

G'day guys, I'm currently using fastercsv to construct ActiveRecord elements and I can't for the life of me see this bug (tired), but for some reason when it creates, if in the rake file i output the ...
1
vote
1answer
360 views

Rails - number of rows in a file

Hey. How can I get a total number of rows in a file (do not want to do it with loop). I'm reading CSV file. Example 1 CSV.open('clients.csv', 'r') Example 2 FasterCSV.foreach('clients.csv') ...
1
vote
2answers
654 views

Is there a Ruby CSV parser that generates column getter methods?

I'm trying to generalize a data retrieval mechanism with Ruby, and can't seem to find a way to retrieve a CSV file and access one of the row's columns by using a dot operator like so: Let's say I ...
1
vote
2answers
645 views

fastercsv - save object table in one go (ruby)

I read my csv using the line below data = FCSV.table("test.csv", {:quote_char => '"', :col_sep =>',', :row_sep =>:auto, :headers => true, :return_headers => false, :header_converters ...
1
vote
2answers
3k views

How do I import using FasterCSV a row with a name like “Ciarán”?

I am trying to load in my data migration a member database. Quite a few of the names have special characters such as "Ciarán". I've set up a simple example like this: require 'rubygems' require ...
1
vote
1answer
742 views

Rails: FasterCSV - Unique Occurences

I have my CSV file imported as such: records = FasterCSV.read(path, :headers => true, :header_converters => :symbol) How can I get the unique occurences of my data? For instance, here some ...
1
vote
1answer
571 views

Importing a huge csv data file and using the header to access columns using Ruby

I need to import a huge csv data file (6880 columns) and I need to be able use the column headers to access it. What's the best way? Speed isn't important. Clarity is.
1
vote
2answers
1k views

Ruby and FasterCSV: converting uneven rows to columns

I have a CSV data file with rows that may have lots of columns 500+ and some with a lot less. I need to transpose it so that each row becomes a column in the output file. The problem is that the ...
0
votes
3answers
43 views

ActiveRecord `from_csv` method - howto make it more sexy?

I have written method to load data to DB from CSV. For me it's a little bit unsexy and it's far away from DRY: def self.from_csv(data) c = Company.new FasterCSV.parse(data) do |row| ...
0
votes
3answers
93 views

Importing CSV data into a ruby array/variable

I am trying to use a CSV as a settings file in a plugin for the SiriProxy project to use wake-on-lan. This project is based on ruby. So the csv is as follows: Name, MACAddress Desktop, ...
0
votes
1answer
37 views

CSV exporting number with leading zeros readable in excel

Is it possible to influence ruby CSV module to add equal sign before quoted field, so generated csv is readable in excel and does not loose leading zero. Current result is: ruby-1.9.2-p0 > ...
0
votes
1answer
30 views

What data type do I specify in the migration to import a date from a CSV with FasterCSV?

Fellow Overflowers, I have a tab delimited csv file which contains dates in this format: 30-11-2011 2:24 I am parsing the csv with FasterSCV gem. I have created a migration which stores this info as ...
0
votes
1answer
103 views

in rails, unable to override content-disposition filename

I am using Rails 3.1.0.rc8 and Chromium 15.0.874.102. I want to set the filename of a CSV download. I am following this SO solution, but find myself unable to modify the filename of the ...
0
votes
0answers
34 views

FasterCsv doesn't show any result in my view in Ruby on Rails?

i am implementing in ruby on rails and in my first view, i get a file, which i put in a parameter, then in my controller i have : def match file = params[:file] @original_filename = ...
0
votes
0answers
36 views

Fastercsv doesn't show any result in Ruby On Rails?

I am quit a newbie in RoR but i just want to select a csv-file and show the table of the file in a view. But I wrote something, but if i execute my program, he doesn't give an error, but just don't ...

1 2