querying.rb 3.7 KB
Newer Older
1 2
module ActiveRecord
  module Querying
3
    delegate :find, :take, :take!, :first, :first!, :last, :last!, :exists?, :any?, :many?, to: :all
4
    delegate :second, :second!, :third, :third!, :fourth, :fourth!, :fifth, :fifth!, :forty_two, :forty_two!, to: :all
5 6 7 8 9
    delegate :first_or_create, :first_or_create!, :first_or_initialize, to: :all
    delegate :find_or_create_by, :find_or_create_by!, :find_or_initialize_by, to: :all
    delegate :find_by, :find_by!, to: :all
    delegate :destroy, :destroy_all, :delete, :delete_all, :update, :update_all, to: :all
    delegate :find_each, :find_in_batches, to: :all
10
    delegate :select, :group, :order, :except, :reorder, :limit, :offset, :joins,
11
             :where, :rewhere, :preload, :eager_load, :includes, :from, :lock, :readonly,
12 13 14
             :having, :create_with, :uniq, :distinct, :references, :none, :unscope, to: :all
    delegate :count, :average, :minimum, :maximum, :sum, :calculate, to: :all
    delegate :pluck, :ids, to: :all
15 16 17 18

    # Executes a custom SQL query against your database and returns all the results. The results will
    # be returned as an array with columns requested encapsulated as attributes of the model you call
    # this method from. If you call <tt>Product.find_by_sql</tt> then the results will be returned in
19
    # a +Product+ object with the attributes you specified in the SQL query.
20 21 22 23 24 25 26 27 28 29 30 31
    #
    # If you call a complicated SQL query which spans multiple tables the columns specified by the
    # SELECT will be attributes of the model, whether or not they are columns of the corresponding
    # table.
    #
    # The +sql+ parameter is a full SQL query as a string. It will be called as is, there will be
    # no database agnostic conversions performed. This should be a last resort because using, for example,
    # MySQL specific terms will lock you to using that particular database engine or require you to
    # change your call if you switch engines.
    #
    #   # A simple SQL query spanning multiple tables
    #   Post.find_by_sql "SELECT p.title, c.author FROM posts p, comments c WHERE p.id = c.post_id"
32
    #   # => [#<Post:0x36bff9c @attributes={"title"=>"Ruby Meetup", "first_name"=>"Quentin"}>, ...]
33
    #
34 35
    # You can use the same string replacement techniques as you can with <tt>ActiveRecord::QueryMethods#where</tt>:
    #
36
    #   Post.find_by_sql ["SELECT title FROM posts WHERE author = ? AND created > ?", author_id, start_date]
37
    #   Post.find_by_sql ["SELECT body FROM comments WHERE author = :user_id OR approved_by = :user_id", { :user_id => user_id }]
38
    def find_by_sql(sql, binds = [])
39
      result_set = connection.select_all(sanitize_sql(sql), "#{name} Load", binds)
40 41
      column_types = result_set.column_types.dup
      columns_hash.each_key { |k| column_types.delete k }
42 43 44 45 46 47 48 49
      message_bus = ActiveSupport::Notifications.instrumenter

      payload = {
        record_count: result_set.length,
        class_name: name
      }

      message_bus.instrument('instantiation.active_record', payload) do
50
        result_set.map { |record| instantiate(record, column_types) }
51
      end
52 53 54 55 56 57
    end

    # Returns the result of an SQL statement that should only include a COUNT(*) in the SELECT part.
    # The use of this method should be restricted to complicated SQL queries that can't be executed
    # using the ActiveRecord::Calculations class methods. Look into those before using this.
    #
C
claudiob 已提交
58 59
    #   Product.count_by_sql "SELECT COUNT(*) FROM sales s, customers c WHERE s.customer_id = c.id"
    #   # => 12
60
    #
C
claudiob 已提交
61
    # ==== Parameters
62
    #
C
claudiob 已提交
63
    # * +sql+ - An SQL statement which should return a count query from the database, see the example above.
64
    def count_by_sql(sql)
65 66
      sql = sanitize_conditions(sql)
      connection.select_value(sql, "#{name} Count").to_i
67 68 69
    end
  end
end