|
ActiveRecord
Business object / database mapping framework used by Ruby on Rails
ActiveRecordActive Record connects business objects and database tables to create a persistable domain model where logic and data is presented in one wrapping. It’s an implementation of the object-relational mapping (ORM) pattern by the same name as described by Martin Fowler: An object that wraps a row in a database table or view, encapsulates the database access, and adds domain logic on that data. Wiki: http://wiki.rubyonrails.com/rails/pages/ActiveRecord Documentation: http://api.rubyonrails.com/classes/ActiveRecord/Base.html |
Sign in to add a comment