require 'fastercsv'

 csv_string = FasterCSV.generate do |csv|
   csv << ['admission_no','student_name','contact_no']
   student = Student.find(:all)
   student.each do |r|
    csv << [r.admission_no,r.student_name,r.contact_no']
   end
 end

 send_data csv_string,
          :type => 'text/csv; charset=iso-8859-1; header=present',
          :disposition => "attachment; filename=student.csv"

 Good luck. :)

-- 
Posted via http://www.ruby-forum.com/.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to