cdubd
2008-Nov-03 14:37 UTC
Really confusing issue involving ActiveRecord and a NoMethodError
Hey Everyone, I have been working on a project where I process an XML file that contains data about a music playlist, and I use 3 models: Playlist, Artist, and Song. Each model is mapped to a table in my database, and when my app processes the XML file, it will populate the database accordingly. The issue I have is that the Artist class and the Song class seem to be undefined, even though they absolutely are defined. I can interact with the Playlist class just fine, and create new entries in the database, but for some reason, when I try and create a new instance of the Artist class, or the Song class I get the following error: undefined method `create'' for UploadController::Artist:Class I decided to check this out using the Console, and I am able to create a new instance of the Artist class, and populate the database in the console, so the issue only resides in my web application. Could I be missing some small piece of trivial information? I was under the impression that I could access all of the models from any controller I am using, but I can only access a single model at the moment. Any help would be great, this issue is driving me crazy. Thanks! --~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Frederick Cheung
2008-Nov-03 14:48 UTC
Re: Really confusing issue involving ActiveRecord and a NoMethodError
On Nov 3, 2:37 pm, cdubd <cdub...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Hey Everyone, > > I have been working on a project where I process an XML file that > contains data about a music playlist, and I use 3 models: Playlist, > Artist, and Song. Each model is mapped to a table in my database, and > when my app processes the XML file, it will populate the database > accordingly. >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> with the Playlist class just fine, and create new entries in the > database, but for some reason, when I try and create a new instance of > the Artist class, or the Song class I get the following error: > > undefined method `create'' for UploadController::Artist:Class > > I decided to check this out using the Console, and I am able to create > a new instance of the Artist class, and populate the database in the > console, so the issue only resides in my web application. > > Could I be missing some small piece of trivial information? I was > under the impression that I could access all of the models from any > controller I am using, but I can only access a single model at the > moment. > > Any help would be great, this issue is driving me crazy. > > Thanks!--~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
cdubd
2008-Nov-05 16:43 UTC
Re: Really confusing issue involving ActiveRecord and a NoMethodError
> 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 interactThe 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Frederick Cheung
2008-Nov-05 17:13 UTC
Re: Really confusing issue involving ActiveRecord and a NoMethodError
On 5 Nov 2008, at 16:43, cdubd wrote:> > 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. >Yes. Fred> -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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
cdubd
2008-Nov-06 11:07 UTC
Re: Really confusing issue involving ActiveRecord and a NoMethodError
I discovered the problem! When I was going to cut and paste the code, I noticed some classes I defined from within the controller (as a test) that I had later forgotten about completely because they were at the bottom of a lot of code. And as you have probably guessed the class names were Artist, and Song. I have been humbled! Thanks again, 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---