Is there a way debug ActiveRecord queries before they are executed rather t开发者_Python百科han after?
You can call .to_sql on the end of the query to output the sql that it generates like so:
SomeModel.where(:stuff => 'is here').to_sql
Is there a way debug ActiveRecord queries before they are executed rather t开发者_Python百科han after?
You can call .to_sql on the end of the query to output the sql that it generates like so:
SomeModel.where(:stuff => 'is here').to_sql
精彩评论