vote up 7 vote down star
3

I'd like to check a few queries generated by ActiveRecord, but I don't need to actually run them. Is there a way to get at the query before it returns its result?

flag

61% accept rate

4 Answers

vote up 5 vote down check

Both of these articles should help you do what you want.

http://weblog.jamisbuck.org/2007/1/8/watching-activerecord-do-it-s-thing

http://weblog.jamisbuck.org/2007/1/31/more-on-watching-activerecord

link|flag
Those still run the queries, but they solve the problem I was really after, since the queries (a) are idempotent and (b) don't take too long. – James A. Rosen Oct 28 '08 at 15:47
vote up 0 vote down

i think it's buried in:

construct_finder_sql,

http://groups.google.com/group/rubyonrails-talk/browse_frm/thread/38c492e3939dd9bf/?pli=1

link|flag
vote up 2 vote down

tail -f log/development.log

Works in default settings or when you set your logger to DEGBUG mode.

link|flag
vote up 0 vote down

Jamis' article is outdated, or at least doesn't work my Rails app (possibly due to some other reason with a 3 year old 30,000 line app). However this works in a console any time:

ActiveRecord::Base.connection.instance_variable_set :@logger, Logger.new(STDOUT)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.