vote up 0 vote down star
1

How do you access a MySQL relation using RoR?

flag
It sounds like you need to go through a Rails tutorial to understand how everything works (Google for Rails 2.0 tutorial and you'll find plenty). – mwilliams Nov 20 '08 at 13:17

2 Answers

vote up 3 vote down check

Toby is right. You need to learn about table relationships using ActiveRecord.

The gist. You need to put the following codes in your models. Here is an example.

In User model:

has_many :addresses

In the Address model:

belongs_to :user

This is for a one to many relationship.

This guide should give you all the help you need.

You can also refer to the rails documentation by going to this site and enter 'belongs_to' in the search box. That will bring you to the relevant page.

link|flag
vote up 1 vote down

Your question doesn't really make sense.

Rails works with ActiveRecord which handles all sorts of complex database relationships. Check the AR documentation for details.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.