What is an active record?
What exa开发者_运维问答ctly is an active record? I hear this term used in Ruby post and nhibernate.
Active record was initially a design pattern which involved wrapping database table operations in a class.
In a Rails context, however, it is also the proper name of a particular software component which implements the design pattern in Ruby for object-relational mapping, and the name of its associated module.
Active record is a design pattern where you map each table to a class. This means that each object created from this class represents a row in the table.
http://martinfowler.com/eaaCatalog/activeRecord.html
http://en.wikipedia.org/wiki/Active_record_pattern
It s a Design Pattern.
http://martinfowler.com/eaaCatalog/activeRecord.html
精彩评论