Basic CRUD

Version 6 (Héctor Ramón Jiménez, 2010-12-26 12:25 PM) → Version 7/13 (Héctor Ramón Jiménez, 2010-12-26 12:25 PM)


h2. Basic CRUD

*(#topic-list) "Create":/projects/main/wiki/Basic_CRUD#create
* "Read":/projects/main/wiki/Basic_CRUD#read
* "Update":/projects/main/wiki/Basic_CRUD#update
* "Delete":/projects/main/wiki/Basic_CRUD#delete

"CRUD":http://en.wikipedia.org/wiki/Create,_read,_update_and_delete as defined by Wikipedia:

> Create, read, update and delete (CRUD) are the four basic functions of persistent storage, a major part of nearly all computer software. Sometimes CRUD is expanded with the words retrieve instead of read or destroy instead of delete. It is also sometimes used to describe user interface conventions that facilitate viewing, searching, and changing information; often using computer-based forms and reports.

In other words, CRUD is the day-to-day tedium of saving and reading data. ActiveRecord removes the remedial and encumbering task of hand-writing SQL queries. Instead, you will only need to write the relevant parts to work with your data.

h4(#create). Create

This is where you save records to your database. Here we create a new post by instantiating a new object and then invoking the save() method.

<pre class="code"><code class="php">
$post = new Post();
$post->title = 'My first blog post!!';
$post->author_id = 5;
$post->save();
# INSERT INTO `posts` (title,author_id) VALUES('My first blog post!!', 5)

# the below methods accomplish the same thingg

$attributes = array('title' => 'My first blog post!!', 'author_id' => 5);
$post = new Post($attributes);
$post->save();
# same sql as above

$post = Post::create($attributes);
# same sql as above
</code></pre>

h4(#read). Read

These are your basic methods to find and retrieve records from your database. See the [[Finders]] section for more details.

<pre class="code"><code class="php">
$post = Post::find(1);
echo $post->title; # 'My first blog post!!'
echo $post->author_id; # 5

# also the same since it is the first record in the db
$post = Post::first();

# using dynamic finders
$post = Post::find_by_name('The Decider');
$post = Post::find_by_name_and_id('The Bridge Builder',100);
$post = Post::find_by_name_or_id('The Bridge Builder',100);

# using some conditions
$posts = Post::find('all',array('conditions' => array('name=?','The Bridge Builder')));
</code></pre>

h4(#update). Update

To update you would just need to find a record first and then change one of its attributes. It keeps an array of attributes that are "dirty" (that have been modified) and so our sql will only update the fields modified.

<pre class="code"><code class="php">
$post = Post::find(1);
echo $post->title; # 'My first blog post!!'
$post->title = 'Some real title';
$post->save();
# UPDATE `posts` SET title='Some real title' WHERE id=1

$post->title = 'Some other title';
$post->author_id = 1;
$post->save();
# UPDATE `posts` SET title='Some other title', author_id=1 WHERE id=1
</code></pre>

h4(#delete). Delete

Deleting a record will not destroy the object. This means that it will call sql to delete the record in your database, however, you can still use the object.

<pre class="code"><code class="php">
$post = Post::find(1);
$post->delete();
# DELETE FROM `posts` WHERE id=1

echo $post->title; # Some other title
</code></pre>

h4 (#massive).</span> h4. (#massive) Massive Update or Delete
You can do a massive update or massive delete easily. Look at this example:

<pre><code class="php">
# MASSIVE UPDATE
# Model::table()->update(AttributesToUpdate, WhereToUpdate);
Post::table()->update(array('title' => 'Massive title!', /* Other attributes... */, array('id' => array(1, 3, 7));
# UPDATE `posts` SET title = `Massive title!` WHERE id IN (1, 3, 7)

# MASSIVE DELETE
# Model::table()->delete(WhereToDelete);
Post::delete()->delete(array('id' => array(5, 9, 26, 30));
# DELETE FROM `posts` WHERE id IN (5, 9, 26, 30)
</code></pre>