ActiveRecord find and count uses sql commands

Yes ActiveRecord does use SQL. Try running this from the command line:

tail -f log/development.log

Then browse around your app and watch the SQL fly.

Aaron