[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.1.5 Released

Sharon Rosner

5/26/2007 8:51:00 AM

Sequel version 0.1.5 has just been released. This release adds support
for multiple joins (thanks Farrel Lifson) and now supports left outer,
right outer, full outer and inner joins.

Multiple joins
==============

Datasets now support multiple joins. Note that join conditions can be
in the form of a hash of correlating fields between the two tables, or
a field name on the joined table that is correlated to the id field in
the first table.

DB[:a].join(:b, :a_id).join(:c, :b_id).sql #=>
"SELECT * FROM a LEFT OUTER JOIN b ON (b.a_id = a.id) LEFT OUTER JOIN
c ON (c.b_id = b.id)"

Join types
==========

Datasets now contain support for left outer, right outer, full outer
and inner joins. You can specify the join type by using either the
Dataset#join_table method:

DB[:a].join_table(:inner, :b, :a_id)

Or by using one of the specific join methods:

DB[:a].left_outer_join(:b, :a_id)
DB[:a].right_outer_join(:b, :a_id)
DB[:a].full_outer_join(:b, :a_id)
DB[:a].inner_join(:b, :a_id)

Also note that Dataset#join is an alias for Dataset#left_outer_join,
which is probably the most common join type.

======================

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