# # # # # # # # # # /49/sql.rb # # by Jan Lelis # e-mail: mail@janlelis.de # type/version: ruby # snippet url: http://rbJL.net/49/sql.rb # original post: http://rbJL.net/49-railsrc-rails-console-snippets # license: CC-BY (DE) # # (c) 2011 Jan Lelis. def sql(query) ActiveRecord::Base.connection.select_all(query) end