DEV Community

Viktor Emilov
Viktor Emilov

Posted on

What is Rails ActiveRecord?

Image description
ActiveRecord is managing your Database, it is a design pattern used in object-relational mapping (ORM) to create an object-oriented interface to a relational database.
It is a pattern that allows you to interact with your database, like you would with an object. It is commonly used in the Ruby on Rails web framework, but can also be used in other languages and frameworks as well. ActiveRecord provides methods for creating, reading, updating, and deleting records in a database, as well as methods for querying the database and establishing relationships between tables.

link to official Rails ActiveRecord documentation

Top comments (0)