up vote 20 down vote favorite
14
share [g+] share [fb]

I would like to see the SQL statement that a given ActiveRecord Query will generate. I recognize I can get this information from the log after the query has been issued, but I'm wondering if there is a method that can be called on and ActiveRecord Query.

For example:

SampleModel.find(:all, :select => "DISTINCT(*)", :conditions => ["`date` > #{self.date}"], :limit => 1, :order => '`date`', :group => "`date`")

I would like to open the irb console and tack a method on the end that would show the SQL that this query will generate, but not necessarily execute the query.

link|improve this question

62% accept rate
feedback

8 Answers

up vote 2 down vote accepted

When last I tried to to this there was no official way to do this. I resorted to using the function that find and its friends use to generate their queries directly. It is private API so there is a huge risk that Rails 3 will totally break it, but for debugging, it is an ok solution.

The method is construct_finder_sql(options) (lib/active_record/base.rb:1681) you will have to use __send__ because it is private.

link|improve this answer
This is close to what I'm thinking. I guess a person could write a plugin that would do something like: SampleModel.find(:all, :select => "DISTINCT(*)", :conditions => ["date > #{self.date}"], :limit => 1, :order => 'date', :group => "date").show_generated_sql and have this call the construct_finder_sql method. – rswolff Aug 28 '09 at 17:02
With DataMapper you could because it doesn't run the query right away. ActiveRecord on the other hand executes the query immediately. show_generated_sql will be acting on an already retrieved dataset from find. – John F. Miller Aug 28 '09 at 20:55
In Rails 3 construct_finder_sql is indeed removed – Veger Dec 26 '11 at 14:21
feedback

Similar to penger's, but works anytime in the console even after classes have been loaded and the logger has been cached:

For Rails 2:

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

For Rails 3:

ActiveRecord::Base.logger = Logger.new(STDOUT)
link|improve this answer
This isn't working for me in rails console. Does it work only for irb loaded directly from the shell? (or was it removed for rails 3?) – Eric Hu Mar 23 '11 at 19:34
1  
They moved it to a more sensible place for Rails 3... see my updated version. – dasil003 Apr 7 '11 at 3:08
Is there any way to do this automatically every time I start the console? Something like a before load hook? – stream7 Jul 6 '11 at 7:20
1  
@stream7..I dont know if u need this now, but you can move this code to environment.rb..if "irb" == $0;ActiveRecord::Base.logger = Logger.new(STDOUT);end..got this from comments in http://weblog.jamisbuck.org/2007/1/8/watching-activerecord-do-it-s-thing – rubyprince Oct 24 '11 at 8:45
feedback

Create a .irbrc file in your home directory and paste this in:

if ENV.include?('RAILS_ENV') && !Object.const_defined?('RAILS_DEFAULT_LOGGER')
  require 'logger'
  RAILS_DEFAULT_LOGGER = Logger.new(STDOUT)
end

That will output SQL statements into your irb session as you go.

EDIT: Sorry that will execute the query still, but it's closest I know of.

EDIT: Now with arel, you can build up scopes/methods as long as the object returns ActiveRecord::Relation and call .to_sql on it and it will out put the sql that is going to be executed.

link|improve this answer
+1 for valiant effort – MattC Aug 27 '09 at 23:58
This is what I've been doing, but I'm more interested in simply seeing the projected SQL the ActiveRecord query will generate. I'm surprised there's no simple way to do this... – rswolff Aug 28 '09 at 16:59
feedback

This is what I usually do to get SQL generated in console

-> script/console
Loading development environment (Rails 2.1.2)
>> ActiveRecord::Base.logger = Logger.new STDOUT
>> Event.first

You have to do this when you first start the console, if you do this after you have typed some code, it doesn't seem to work

Can't really take credit for this, found it long time ago from someone's blog and can't remember whose it is.

link|improve this answer
1  
I'm pretty sure it was Jamis Buck's blog: weblog.jamisbuck.org/2007/1/8/… – rswolff Aug 28 '09 at 17:03
I'm not sure if it's due to Rails 2.3 or something in my environment, but this doesn't work for me. See my response below. – dasil003 Oct 16 '09 at 5:23
feedback

Try the show_sql plugin. The plugin enables you to print the SQL without running it

SampleModel.sql(:select => "DISTINCT(*)", :conditions => ["`date` > #{self.date}"], :limit => 1, :order => '`date`', :group => "`date`")
link|improve this answer
Looks like that the link got broken (404 error). Probably, Ryan Bigg deleted the plugin. – DNNX Jan 25 at 20:45
feedback

You could change the connection's log method to raise an exception, preventing the query from being run.

It's a total hack, but it seems to work for me (Rails 2.2.2, MySQL):

module ActiveRecord
  module ConnectionAdapters
    class AbstractAdapter
      def log_with_raise(sql, name, &block)
        puts sql
        raise 'aborting select' if caller.any? { |l| l =~ /`select'/ }
        log_without_raise(sql, name, &block)
      end
      alias_method_chain :log, :raise
    end
  end
end
link|improve this answer
feedback

Stick a put query_object.class somewhere to see what type of object your working with, then lookup the docs.

For example, in Rails 3.0, scopes use ActiveRecord::Relation which has a #to_sql method. For example:

class Contact < ActiveRecord::Base
  scope :frequently_contacted, where('messages_count > 10000')
end

Then, somewhere you can do:

puts Contact.frequently_contacted.to_sql
link|improve this answer
feedback

In Rails 3 you can add this line to the config/environments/development.rb

config.active_record.logger = Logger.new(STDOUT)

It will however execute the query. But half got answered :

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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