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

  • SEARCH
  • Home
  • 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 509171
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T06:59:00+00:00 2026-05-13T06:59:00+00:00

I am having trouble understanding ORM in Ruby on Rails. From what I understand

  • 0

I am having trouble understanding ORM in Ruby on Rails. From what I understand there is a 1:1 relationship between tables/columns and objects/attributes. So every record is an object.
Also what exactly is a Model? I know it maps to a table.

What I’m really after is a deeper understanding of the above. Thank you in advance for your help

I’m a Web developer going from PHP to Ruby on Rails.

  • 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-13T06:59:00+00:00Added an answer on May 13, 2026 at 6:59 am

    “From what I understand there is a 1:1 relationship between tables/columns and objects/attributes. So every record is an object.”

    That is not exactly correct, unless you use the term “object” very loosely. Tables are modelled by classes, while table records are modeled by instances of those classes.

    Let’s say you have a clients table, with columns id (autonum) and name (varchar). Let’s say that it has only one record, id=1 and a name=”Ford”. Then:

    • The DB table clients will map to the model class Client.
    • The record will map to a model instance, meaning that you have to create the object and assign it to a variable in order to work with the record. The most common way would be to do ford = Client.find(1)
    • The two columns of the table will map to methods on the ford variable. You can do ford.id and you will get 1. You can do ford.name and you will get the string “Ford”. You can also change the name of the client by doing ford.name = "Chevrolet", and then commit the changes on the database by doing ford.save.

    “Also what exactly is a Model? I know it maps to a table”

    Models are just classes with lots of very useful methods for manipulating your database. Here are some examples:

    • Validations: Besides the typical db-driven validations (“this field can’t be null”) you can implement much complex validations in ruby (“this field must be a valid email” is the most typical one). Validations are run just before you invoke “save” on a model instance.
    • Relationships: The foreign keys can also be mapped onto models. For example, if you had a brands table (with its corresponding Brand model) associated via a foreign key to your ford client, you could do ford.brands and you would get an array of objects representing all the records on the brands table that have a client_id = 1.
    • Queries: Models allow you to create queries in ruby, and translate them to SQL themselves. Most people like this feature.

    These are just some examples. Active record provides much more functionalities such as translations, scoping in queries, or support for single table inheritance.

    Last but not least, you can add your own methods to these classes.

    Models are a great way of not writing “spaguetti code”, since you are kind of forced to separate your code by functionality.

    • Models handle database interaction, and business logic
    • Views handle html rendering and user interaction
    • Controllers connect Models with Views
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 293k
  • Answers 293k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You can do it with only a few lines of… May 13, 2026 at 6:28 pm
  • Editorial Team
    Editorial Team added an answer You probably haven't imported the file which contains the definition… May 13, 2026 at 6:28 pm
  • Editorial Team
    Editorial Team added an answer Decimal (alias for System.Decimal structure in the BCL) is designed… May 13, 2026 at 6:28 pm

Related Questions

I am having trouble understanding how the System Registry can help me convert a
I am having trouble understanding a question. The question asks first to write a
I am having trouble understanding why NSLog reports dog when the code is run.
I am fairly new to objective-c and am having trouble understanding the warning message
I'm a former PHP developer now doing WPF/C# applications, and am having trouble understanding

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.