First page Back Continue Last page Overview Graphics
ActiveRecord – What is it?
Design pattern created by Martin Fowler in his book Patterns of Enterprise Application Architecture
Rails uses the ActiveRecord design pattern to access databases.
ActiveRecord produces SQL queries and parses the data returned
Easier to use then SQL.
ActiveRecord is really sweet!
Notes:
Many people use ActiveRecord standalone outside of any Rails application.