[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

ANN: Sequel 0.5 Released

Sharon Rosner

12/30/2007 8:26:00 AM

Sequel version 0.5 has just been released. Sequel is a lightweight
database access and ORM library for Ruby. Sequel provides thread
safety, connection pooling and a simple and expressive API for
constructing database queries and table schemas.

This release separates the Sequel::Model class from the rest of Sequel
and into its own separate gem, called sequel_model. The simplest way
to install or upgrade sequel is to install the sequel_model gem:

sudo gem install sequel_model

This will also update your sequel core installation to version 0.5.

=== More info on Sequel

Sequel project page:
<http://code.google.com/p/ruby-...

Sequel documentation:
<http://sequel.rubyfor...

Join the Sequel-talk group:
<http://groups.google.com/group/seque...

Install the gem:
sudo gem install sequel

Or check out the source and install manually:
svn co http://ruby-sequel.googlecode.com... sequel
cd sequel
rake install

2 Answers

Tim Uckun

1/1/2008 8:55:00 AM

0

On Dec 30, 2007 9:26 PM, Sharon Rosner <ciconia@gmail.com> wrote:
> Sequel version 0.5 has just been released. Sequel is a lightweight
> database access and ORM library for Ruby. Sequel provides thread
> safety, connection pooling and a simple and expressive API for
> constructing database queries and table schemas.
>

Does this mean sequel is faster then AR? Does it work better with
legacy databases? Is it more compatible with stored procedures and
views?

Thanks.

Sharon Rosner

1/1/2008 7:26:00 PM

0

> Does this mean sequel is faster then AR? =A0Does it work better with
> legacy databases? Is it more compatible with stored procedures and
> views?

Sequel cannot really be compared to AR. It is a much better tool for
working with large data sets and legacy databases. It does support
selecting records from views and stored procedures. You can make up
your own mind by giving it a spin.

sharon