aboutsummaryrefslogtreecommitdiffstats
path: root/railties/doc/guides/activerecord/basics.markdown
diff options
context:
space:
mode:
authorRyan Bigg <radarlistener@gmail.com>2008-10-22 21:46:49 +1030
committerRyan Bigg <radarlistener@gmail.com>2008-10-22 21:46:49 +1030
commit4a53eb8a79e3e0535ba19e6da38370a542ce4961 (patch)
tree965418cb69895e44879c7b1fa428e808b91aa66a /railties/doc/guides/activerecord/basics.markdown
parenta325010d6c9b2c69cab5da046e1106aad491b73f (diff)
parent303919c62660c68ca450a53ec5ef29ec2c615b7a (diff)
downloadrails-4a53eb8a79e3e0535ba19e6da38370a542ce4961.tar.gz
rails-4a53eb8a79e3e0535ba19e6da38370a542ce4961.tar.bz2
rails-4a53eb8a79e3e0535ba19e6da38370a542ce4961.zip
Merge branch 'master' of git@github.com:lifo/docrails
Diffstat (limited to 'railties/doc/guides/activerecord/basics.markdown')
-rw-r--r--railties/doc/guides/activerecord/basics.markdown56
1 files changed, 0 insertions, 56 deletions
diff --git a/railties/doc/guides/activerecord/basics.markdown b/railties/doc/guides/activerecord/basics.markdown
deleted file mode 100644
index 0d030fabf9..0000000000
--- a/railties/doc/guides/activerecord/basics.markdown
+++ /dev/null
@@ -1,56 +0,0 @@
-Active Record Basics
-====================
-
-
-
-The ActiveRecord Pattern
-------------------------
-
-Active Record (the library) conforms to the active record design pattern. The active record pattern is a design pattern often found in applications that use relational database. The name comes from by Martin Fowler's book *Patterns of Enterprise Application Architecture*, in which he describes an active record object as:
-
-> An object that wraps a row in a database table or view, encapsulates the database access, and adds domain logic on that data.
-
-So, an object that follows the active record pattern encapsulates both data and behavior; in other words, they are responsible for saving and loading to the database and also for any domain logic that acts on the data. The data structure of the Active Record should exactly match that of the database: one field in the class for each column in the table.
-
-The Active Record class typically has methods that do the following:
-
-* Construct an instances of an Active Record class from a SQL result
-* Construct a new class instance for insertion into the table
-* Get and set column values
-* Wrap business logic where appropriate
-* Update existing objects and update the related rows in the database
-
-Mapping Your Database
----------------------
-
-### Plural tables, singular classes ###
-
-### Schema lives in the database ###
-
-Creating Records
-----------------
-
-### Using save ###
-
-### Using create ###
-
-Retrieving Existing Rows
-------------------------
-
-### Using find ###
-
-### Using find_by_* ###
-
-Editing and Updating Rows
--------------------------
-
-### Editing an instance
-
-### Using update_all/update_attributes ###
-
-Deleting Data
--------------
-
-### Destroying a record ###
-
-### Deleting a record ### \ No newline at end of file