Excuse the newbescence, but “count” is impossible to Google for. (Darn
these
clear and expressive interfaces!)
The deprecation warning says something about count(column_name,
options). So
what’s the simplest translation from Record.count(‘whatever = whatever’)
to
a .count() in … whatever notation?
Excuse the newbescence, but “count” is impossible to Google for. (Darn these
clear and expressive interfaces!)
The deprecation warning says something about count(column_name, options). So
what’s the simplest translation from Record.count(‘whatever = whatever’) to
a .count() in … whatever notation?
The deprecation warning says something about count(column_name, options).
So
what’s the simplest translation from Record.count(‘whatever = whatever’)
to
a .count() in … whatever notation?
count :all, :conditions => …
For future reference, that wouldn’t have been enough for people like me
who
shouldn’t be allowed near a computer.
Fortunately, I just found this:
Person.count(:all, :conditions => “age > 26”) # Performs a COUNT()
(:all is an alias for '')