Rails ActiveRecord icon
Rails ActiveRecord icon

Rails ActiveRecord

ORM used by Ruby on Rails.

Cost / License

  • Free
  • Open Source

Platforms

  • Mac
  • Windows
  • Linux
  • Ruby
  • Ruby on Rails
  • RubyGems
-
No reviews
0likes
0comments
0news articles

Features

Suggest and vote on features
  1.  Object Relational Mapping

 Tags

Rails ActiveRecord News & Activities

Highlights All activities

Recent activities

No activities found.

Rails ActiveRecord information

  • Developed by

    DK flagDHH
  • Licensing

    Open Source (MIT) and Free product.
  • Written in

  • Alternatives

    5 alternatives listed
  • Supported Languages

    • English

GitHub repository

  •  58,039 Stars
  •  22,123 Forks
  •  1427 Open Issues
  •   Updated  
View on GitHub
Rails ActiveRecord was added to AlternativeTo by R K on and this page was last updated .
No comments or reviews, maybe you want to be first?
Post comment/review

What is Rails ActiveRecord?

Active Record – Object-relational mapping in Rails

Active Record connects classes to relational database tables to establish an almost zero-configuration persistence layer for applications. The library provides a base class that, when subclassed, sets up a mapping between the new class and an existing table in the database. In the context of an application, these classes are commonly referred to as models. Models can also be connected to other models; this is done by defining associations.

Active Record relies heavily on naming in that it uses class and association names to establish mappings between respective database tables and foreign key columns. Although these mappings can be defined explicitly, it's recommended to follow naming conventions, especially when getting started with the library.

Official Links