aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/engines/sql/engine.rb
blob: d27d93a5dc8e5237f76e909b6512c36816486720 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
module Arel
  module Sql
    class Engine
      def initialize(ar = nil)
        @ar = ar
      end

      def connection
        @ar.connection
      end

      def method_missing(method, *args, &block)
        @ar.connection.send(method, *args, &block)
      end

      module CRUD
        def create(relation)
          connection.insert(relation.to_sql)
        end

        def read(relation)
          # FIXME
          rows = connection.select_rows(relation.to_sql)
          
          class << rows
            include Enumerable
          end
          
          Array.new(rows, relation.attributes)
        end

        def update(relation)
          connection.update(relation.to_sql)
        end

        def delete(relation)
          connection.delete(relation.to_sql)
        end
      end
      include CRUD
    end
  end
end