> What is in your upload controller ? > > > The issue I have is that the Artist class and the Song class seem to > > be undefined, even though they absolutely are defined. > > Actually it looks more like they have been defined a second time > > Fred > I can interact
The following lines appear in my upload controller: @playlistObject = Playlist.create(:name => n) Artist.create(:name => @artistList[j]) Song.create(:name => song.name, :artist_id => artist.id, :minutes => song.minutes, :seconds => song.seconds) The first line, where I create a new Playlist object works, but the other two do not. I can post the entire code listing in the upload controller if you think it would help. -Casen --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

