public
Fork of defunkt/ambitious_activerecord
Description: Ambitious ActiveRecord adapter, for Ambition.
Homepage:
Clone URL: git://github.com/benhoskings/ambitious_activerecord.git
benhoskings (author)
Sun Oct 04 01:13:47 -0700 2009
commit  9173666b85002a2c29b338ec029d6845e55113eb
tree    f17c1f5b4c1ab9f4518e9817a0939f854d13ee91
parent  8ea3ce66d447e8f612e69971aae4010ecc08dd52
name age message
file .gitignore Sat Apr 26 02:12:36 -0700 2008 build me a gem [defunkt]
file LICENSE Sat Apr 26 02:11:10 -0700 2008 new git repo [defunkt]
file Manifest Thu Feb 26 01:35:28 -0800 2009 Updated Manifest, Rakefile and gemspec with new... [benhoskings]
file README Sat Apr 26 02:11:10 -0700 2008 new git repo [defunkt]
file Rakefile Sun Oct 04 01:13:47 -0700 2009 Bumped version to 0.1.3.8. [benhoskings]
file ambitious-activerecord.gemspec Sun Oct 04 01:13:47 -0700 2009 Bumped version to 0.1.3.8. [benhoskings]
directory lib/ Sun Oct 04 01:12:40 -0700 2009 Don't consider 'true' and 'false' strings to be... [benhoskings]
directory test/ Sat Apr 26 02:11:10 -0700 2008 new git repo [defunkt]
README
h2. An Ambitious ActiveRecord Adapter

I could tell you all about how awesome the internals are, or 
how fun it was to write, or how it'll make you rich and famous, 
but instead I'm just going to show you some examples. 

h2. Get It 

@$ sudo gem install ambitious-activerecord@

This will suck in the adapter and its dependencies (ActiveRecord & Ambition). 
It's fully usable outside of Rails (I use it in a Camping app or two), as long
as you're riding ActiveRecord.

Now require it in your app:

<pre>
require 'rubygems'
require 'ambition/adapters/activerecord'
</pre>

h2. Examples

Basically, you write your SQL in Ruby.  No, not in Ruby.  As Ruby.

<ruby>
User.select { |u| u.city == 'San Francisco' }.each do |user|
  puts user.name
end
</ruby>

And that's it.

The key is that queries aren't actually run until the data they represent is 
requested. Usually this is done with what I call a kicker method. You can call them 
that, too.

Kicker methods are guys like @detect@, @each@, @each_with_index@, @map@, @entries@, 
@to_a@, and @first@ (with no argument). Methods like @select@, @sort_by@, and @first@ 
(with an argument) are not kicker methods and return a @Context@ object without running any SQL.

Our @Context@ object has two useful methods: @to_s@ and @to_hash@.  With these,
we can check out what exactly we're building.  Not everyone has @to_s@,
though.  Mostly ignore these methods and treat everything like you normally
would.

See, @to_s@:

<ruby>
>> User.select { |m| m.name == 'jon' }.to_s
=> "SELECT * FROM users WHERE users.name = 'jon'"
</ruby>

See, @to_hash@:

<ruby>
>> User.select { |m| m.name == 'jon' }.to_hash
=> { :conditions => "users.name = 'jon'" }
</ruby>

h2. Equality - select { |u| u.field == 'bob' }

<ruby>
User.select { |m| m.name == 'jon' }
"SELECT * FROM users WHERE users.name = 'jon'"

User.select { |m| m.created_at > 2.days.ago }
"SELECT * FROM users WHERE users.created_at > '2007-09-26 20:37:47'"

User.select { |m| m.name == 'jon' }
"SELECT * FROM users WHERE users.name = 'jon'"

User.select { |m| m.name != 'jon' }
"SELECT * FROM users WHERE users.name <> 'jon'"

User.select { |m| m.name == 'jon' && m.age == 21 }
"SELECT * FROM users WHERE (users.name = 'jon' AND users.age = 21)"

User.select { |m| m.name == 'jon' || m.age == 21 }
"SELECT * FROM users WHERE (users.name = 'jon' OR users.age = 21)"
  
User.select { |m| m.name == 'jon' || m.age == 21 && m.password == 'pass' }
"SELECT * FROM users WHERE 
 (users.name = 'jon' OR (users.age = 21 AND users.password = 'pass'))"

User.select { |m| (m.name == 'jon' || m.name == 'rick') && m.age == 21 }
"SELECT * FROM users WHERE 
 ((users.name = 'jon' OR users.name = 'rick') AND users.age = 21)"
</ruby>
  
h2. Associations - select { |u| u.field == 'bob' && u.association.field == 'bob@bob.com' }

The @to_s@ method doesn't work on associations yet, but that's okay: they can 
still query through ActiveRecord just fine.

<ruby>
User.select do |u| 
  u.email == 'chris@ozmm.org' && u.profile.name == 'chris wanstrath' 
end.map(&:title)

"SELECT users.id AS t0_r0, ... FROM users 
 LEFT OUTER JOIN profiles ON profiles.user_id = users.id 
 WHERE ((users.email = 'chris@ozmm.org' AND profiles.name = 'chris wanstrath'))"
</ruby>

h2. Comparisons - select { |u| u.age > 21 }

<ruby>
User.select { |m| m.age > 21 }
"SELECT * FROM users WHERE users.age > 21"

User.select { |m| m.age < 21 }.to_s
"SELECT * FROM users WHERE users.age < 21"

User.select { |m| [1, 2, 3, 4].include? m.id }
"SELECT * FROM users WHERE users.id IN (1, 2, 3, 4)"
</ruby>

h2. LIKE and REGEXP (RLIKE) - select { |m| m.name =~ 'chris' }

<ruby>
User.select { |m| m.name =~ 'chris' }
"SELECT * FROM users WHERE users.name LIKE 'chris'"

User.select { |m| m.name =~ 'chri%' }
"SELECT * FROM users WHERE users.name LIKE 'chri%'"

User.select { |m| m.name !~ 'chris' }
"SELECT * FROM users WHERE users.name NOT LIKE 'chris'"

User.select { |m| !(m.name =~ 'chris') }
"SELECT * FROM users WHERE users.name NOT LIKE 'chris'"

User.select { |m| m.name =~ /chris/ }
"SELECT * FROM users WHERE users.name REGEXP 'chris'"
</ruby>

h2. #detect

<ruby>
User.detect { |m| m.name == 'chris' }
"SELECT * FROM users WHERE users.name = 'chris' LIMIT 1"
</ruby>

h2. LIMITs - first, first(x), [offset, limit], [range], slice

<ruby>
User.select { |m| m.name == 'jon' }.first
"SELECT * FROM users WHERE users.name = 'jon' LIMIT 1"

User.select { |m| m.name == 'jon' }.first(5)
"SELECT * FROM users WHERE users.name = 'jon' LIMIT 5"

User.select { |m| m.name == 'jon' }[10, 20]
"SELECT * FROM users WHERE users.name = 'jon' LIMIT 10, 20"

User.select { |m| m.name == 'jon' }[10..20]
"SELECT * FROM users WHERE users.name = 'jon' LIMIT 10, 10"
</ruby>

h2. ORDER - sort_by { |u| u.field }

<ruby>
User.select { |m| m.name == 'jon' }.sort_by { |m| m.name }
"SELECT * FROM users WHERE users.name = 'jon' ORDER BY users.name"

User.select { |m| m.name == 'jon' }.sort_by { |m| [ m.name,  m.age ] }
"SELECT * FROM users WHERE users.name = 'jon' ORDER BY users.name, users.age"

User.select { |m| m.name == 'jon' }.sort_by { |m| [ m.name,  -m.age ] }
"SELECT * FROM users WHERE users.name = 'jon' 
 ORDER BY users.name, users.age DESC"

User.select { |m| m.name == 'jon' }.sort_by { |m| [ -m.name,  -m.age ] }
"SELECT * FROM users WHERE users.name = 'jon' 
 ORDER BY users.name DESC, users.age DESC"

User.select { |m| m.name == 'jon' }.sort_by { |m| -m.age }
"SELECT * FROM users WHERE users.name = 'jon' ORDER BY users.age DESC"

User.select { |m| m.name == 'jon' }.sort_by { |m| -m.profiles.title }
"SELECT users.id AS t0_r0, ... FROM users 
 LEFT OUTER JOIN profiles ON profiles.user_id = users.id 
 WHERE (users.name = 'jon') ORDER BY profiles.title DESC"

User.select { |m| m.name == 'jon' }.sort_by { rand }
"SELECT * FROM users WHERE users.name = 'jon' ORDER BY RAND()"
</ruby>

h2. COUNT - select { |u| u.name == 'jon' }.size

<ruby>
User.select { |m| m.name == 'jon' }.size
"SELECT count(*) AS count_all FROM users WHERE (users.name = 'jon')"

>> User.select { |m| m.name == 'jon' }.size
=> 21
</ruby>

h2. Other Enumerables

These methods perform COUNT() operations rather than loading your array into memory.  They're all 
kickers.
  
<ruby>  
User.any? { |m| m.name == 'jon' }
User.all? { |m| m.name == 'jon' }
User.select { |m| m.name == 'jon' }.empty?
</ruby>

h2. More Sugar

The @downcase@ and @upcase@ methods will map to LOWER() and UPPER(), respectively.

<ruby>
>> User.select { |m| m.name.downcase =~ 'jon%' }.to_s
=> "SELECT * FROM users WHERE LOWER(users.name) LIKE 'jon%'"
</ruby>

h2. Quoting

Columns and values will be quoted using ActiveRecord's quote_column_name and quote methods, if
possible.

h2. SELECT * FROM bugs 

Found a bug?  Sweet.  Add it at "the Lighthouse":http://err.lighthouseapp.com/projects/466-plugins/tickets/new.

More information on Ambition:

  * "http://ambition.rubyforge.org":http://ambition.rubyforge.org
  * "http://groups.google.com/group/ambition-rb/":http://groups.google.com/group/ambition-rb/

- Chris Wanstrath [ chris@ozmm.org ]