search for: yacavone

Displaying 4 results from an estimated 4 matches for "yacavone".

Did you mean: macalvone
2006 Feb 12
7
ROR Recipes Beta: Why use taggings instead of tags_contacts? NoMethodError tag_with?
I have gotten acts_as_taggable to work for a test application as documented on taggable.rubyforge.org I am following Chad''s excellent examples in ROR Recipes Beta book. I have a few questions and hope that Chad or some other expert can help clarify them. 1. Why is the book suggesting to use taggings table instead of tags_contacts, as mentioned on taggable.rubyforge.org?
2006 Jan 01
11
Migration db_schema_import always fails.
I have not been able to get DB migrations to work at all in Rails 1.0 for me. On multiple platforms I continually get the same errors. It took me awhile to figure out some initial things, such as Migrations don''t seem to support Enum column types, and doesn''t really support Foreign key relationships (the constraints at least). After changing my DB schema to jive more with the
2005 Dec 25
0
Simple FasterCSV question
Hello, I must be unclear on the concept. Why is it that the following code runs but returns no result? def read_file FasterCSV.foreach("./dar.csv") do |row| STDOUT.puts row end end Thanks so much, Mike
2005 Dec 28
0
Loading flat-file data into multiple tables
I have a CSV export file with 11 columns that I need to ''split'' into three related tables (some columns go into each table). Departments (have many projects) Projects (have many audiences) Audiences (have many projects) I understand the model relationships, and have those built. I am using FasterCSV for file importing and have that iterating through the CSV rows using a