method

_query_by_sql

Importance_0
v7.0.0 - Show latest stable - 0 notes - Class: Querying
_query_by_sql(sql, binds = [], preparable: nil, async: false) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/querying.rb, line 53
    def _query_by_sql(sql, binds = [], preparable: nil, async: false) # :nodoc:
      connection.select_all(sanitize_sql(sql), "#{name} Load", binds, preparable: preparable, async: async)
    end
Register or log in to add new notes.