0
0
Ruby on Railsframework~10 mins

Active Record pattern in Ruby on Rails - Step-by-Step Execution

Choose your learning style9 modes available
Concept Flow - Active Record pattern
Define Model Class
Create Object Instance
Set Attributes
Call Save Method
Active Record Maps Object to DB
Insert or Update DB Record
Return Success or Failure
The Active Record pattern connects a model class to a database table, letting you create, update, and save objects that automatically map to database rows.
Execution Sample
Ruby on Rails
class User < ApplicationRecord
end

user = User.new
user.name = "Anna"
user.save
This code creates a new User object with a name and saves it to the database using Active Record.
Execution Table
StepActionObject StateDB OperationResult
1Define User model classUser class readyNo DB actionModel linked to users table
2Create new User instanceUser object with name=nilNo DB actionObject created in memory
3Set attribute name='Anna'User object with name='Anna'No DB actionAttribute set in object
4Call save methodUser object with name='Anna'INSERT INTO users (name) VALUES ('Anna')Record saved in DB
5Save returns trueUser object savedNo DB actionSave successful
💡 Save completes successfully, object data stored in database
Variable Tracker
VariableStartAfter Step 2After Step 3After Step 4Final
userundefinedUser instance (name=nil)User instance (name='Anna')User instance (name='Anna', persisted)User instance saved
Key Moments - 3 Insights
Why doesn't the database get updated when we just create a new User object?
Creating a new User instance only makes an object in memory (see Step 2 in execution_table). The database updates only happen when calling save (Step 4).
What does the save method do exactly?
Save checks if the object is new or existing, then inserts or updates the database record accordingly (Step 4 shows an INSERT). It returns true if successful (Step 5).
How does Active Record know which table to use?
By convention, the User model maps to the 'users' table automatically (Step 1). This is why no explicit table name is needed.
Visual Quiz - 3 Questions
Test your understanding
Look at the execution_table, what is the state of the user object after Step 3?
AUser instance with name=nil
BUser instance with name='Anna'
CUser instance saved in DB
DNo user object exists
💡 Hint
Check the 'Object State' column at Step 3 in execution_table
At which step does the database record get created?
AStep 4
BStep 3
CStep 2
DStep 5
💡 Hint
Look at the 'DB Operation' column in execution_table
If we skip calling save, what happens to the user object?
AIt is saved automatically
BIt deletes itself
CIt remains only in memory without DB record
DIt updates the DB anyway
💡 Hint
Refer to Step 2 and Step 4 in execution_table and variable_tracker
Concept Snapshot
Active Record pattern links model classes to database tables.
Create an object, set attributes, then call save to insert/update DB.
Save returns true if successful.
Model class name maps to table name by convention.
Objects exist in memory until saved.
This pattern simplifies database work in Rails.
Full Transcript
The Active Record pattern in Rails connects a model class to a database table. First, you define a model class like User that inherits from ApplicationRecord. Then you create an instance of this class in memory. You set attributes on this object, such as name. The database is not affected yet. When you call the save method on the object, Active Record generates an SQL INSERT or UPDATE command to store the data in the database. The save method returns true if the operation succeeds. This pattern lets you work with database records as simple Ruby objects, making database interaction easier and more natural. The model class name automatically maps to the corresponding database table by Rails convention. Until you call save, the object only exists in memory and does not affect the database.