1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
# @title Models
# Models
Unlike other frameworks Ramaze does not ship with a database toolkit. One of the
ideas of Ramaze is that it allows you to choose your own set of tools, you're
not forced to use what we think is best. Ramaze allows you to use
[ActiveRecord][ar], [Sequel][sequel] or anything else. For the simplicity of
this user guide we'll use Sequel. In short, Sequel is a database toolkit that
allows you to write SQL statements using Ruby methods as well as providing an
ORM (Object Relationship Mapper).
Let's say we're creating a simple blog application. Each blog has posts,
comments, users and perhaps some categories. We're not going to create a model
for each of these entities in this guide but instead we'll focus on the Post
model. The most basic form of a model looks like the following:
class Post < Sequel::Model
end
From this point on we can load our model (given we have established a database
connection) and call methods from it. For example, if we want to retrieve the
post with ID #1 we'd do the following:
Post[1] # => SELECT * FROM posts WHERE id = 1
Performing a WHERE clause and retrieving a single record can be done by passing
a hash to the [] method:
Post[:title => 'Ramaze is Great'] # => SELECT * FROM posts WHERE title = 'Ramaze is Great'
## Controllers And Models
Of course using a model on its own isn't really going to work. Let's combine
our Post model mentioned earlier with a controller called "Posts".
require 'ramaze'
require 'model/post'
class Posts < Ramaze::Controller
map '/'
def index
@posts = Post.all
end
def edit(id)
# Arguments are passed as strings so it's a good idea to convert them
@post = Post[id.to_i]
end
end
This is a somewhat more advanced example of how to use controllers and models.
However, it's nothing ground breaking and shouldn't be too hard to understand.
In the index() method we're simply retrieving all posts by calling Post#all and
storing them in an instance variable. In the edit() method we're retrieving the
post based on the given ID.
In the edit() method the "id" variable is also converted to an integer. The
reason for this is that Ramaze doesn't know what types the URI segments should
be and thus passes them as a string to the called method. While Sequel itself
won't have any trouble handling this it's a good practice to send the correct
types as other database toolkits might trigger errors when they receive a string
value while expecting an integer.
## Supported Toolkits
* [ActiveRecord][ar]
* [M4DBI][m4dbi]
* [Sequel][sequel]
* [DataMapper][datamapper]
Besides these listed toolkits Ramaze should work with any other toolkit, these
however are the ones that have been confirmed to work just fine with Ramaze.
[sequel]: http://sequel.rubyforge.org/
[ar]: http://ar.rubyonrails.org/
[m4dbi]: https://github.com/Pistos/m4dbi
[datamapper]: http://datamapper.org/
|