Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6543489
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T11:21:11+00:00 2026-05-25T11:21:11+00:00

I am having trouble with associations in the following code. The error I’m getting

  • 0

I am having trouble with associations in the following code.

The error I’m getting is a comment on the last line of code.

Edit: I simplified the code…

require 'rubygems'
require 'data_mapper' # requires all the gems listed above
require 'pp'

DataMapper.setup(:default, 'sqlite:///Users/chris/Dropbox/HawkEye-DB Test/store.sqlite')

class Manufacturer
  include DataMapper::Resource
  property :id, Serial
  property :name, String

  has n, :products
end

class Product
  include DataMapper::Resource
  property :id, Serial    
  property :name, String

  belongs_to :manufacturer
  has 1, :productoptionset
end


class Productoptionset
  include DataMapper::Resource
  property :id, Serial    
  property :name, String

  belongs_to :product

end

DataMapper.auto_migrate!



# Make some manufactureres
gortex = Manufacturer.create(:name => 'Gortex')
garmin = Manufacturer.create(:name => 'Garmin')

gps = garmin.products.create(:name => 'GPS Unit')

samegps = Product.get(1)

pp samegps.productoptionset.create # undefined method `create' for nil:NilClass (NoMethodError)
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T11:21:12+00:00Added an answer on May 25, 2026 at 11:21 am

    create is a class method (kind of like a static method in Java) so it can’t be called on instances (or non instances in this case) 🙂

    You could create your objects like this

    class Manufacturer
      include DataMapper::Resource
      property :id, Serial
      property :name, String
    
      has n, :products
    end
    
    class Product
      include DataMapper::Resource
      property :id, Serial    
      property :manufacturer_id, Integer
      property :name, String
    
      belongs_to :manufacturer
      has 1, :productoptionset
    end
    
    
    class Productoptionset
      include DataMapper::Resource
      property :id, Serial  
      property :product_id, Integer
      property :name, String
    
      belongs_to :product
    end
    
    DataMapper.auto_migrate!
    
    
    
    # Make some manufactureres
    gortex = Manufacturer.create(:name => 'Gortex')
    garmin = Manufacturer.create(:name => 'Garmin')
    
    garmin.products << Product.create(:name => 'GPS Unit')
    
    samegps = Product.get(1)
    
    samegps.productoptionset = Productoptionset.create(:name => "MyProductoptionset")
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Having trouble with the following segment of code. I'm getting a parameter count mismatch.
Having trouble getting the javascript alert to display from my code behind. c# -
I am having a bit of trouble getting these polymorphic associations to work completely.
So I'm having some trouble with DataMapper and object associations. (Code provided at bottom).
Having trouble using libstatgrab -- I receive the following error at compile time: libstatgrabTest.cpp:16:
Having trouble linking the Stomp.framework into an iPhone SDK application. http://code.google.com/p/stompframework/ I follow the
I having trouble in dividing the HTML frames. I have been using the following
Having trouble getting the correct bounds for my iPad application when launching it in
Having trouble getting the oauth access token and secret exchanged from the request tokens
Having trouble getting my POST arrays to show all checkbox values from my form.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.