database_statements.rb 14.3 KB
Newer Older
1 2 3
module ActiveRecord
  module ConnectionAdapters # :nodoc:
    module DatabaseStatements
4
      # Converts an arel AST to SQL
5
      def to_sql(arel, binds = [])
6
        if arel.respond_to?(:ast)
7 8 9
          visitor.accept(arel.ast) do
            quote(*binds.shift.reverse)
          end
10 11 12 13 14
        else
          arel
        end
      end

15 16
      # Returns an array of record hashes with the column names as keys and
      # column values as values.
17
      def select_all(arel, name = nil, binds = [])
18
        select(to_sql(arel, binds), name, binds)
19
      end
20

21 22
      # Returns a record hash with the column names as keys and column values
      # as values.
23 24
      def select_one(arel, name = nil, binds = [])
        result = select_all(arel, name, binds)
25
        result.first if result
26
      end
27 28

      # Returns a single value from a record
29 30
      def select_value(arel, name = nil, binds = [])
        if result = select_one(arel, name, binds)
31 32
          result.values.first
        end
33 34 35 36
      end

      # Returns an array of the values of the first column in a select:
      #   select_values("SELECT id FROM companies LIMIT 3") => [1,2,3]
37
      def select_values(arel, name = nil)
38
        result = select_rows(to_sql(arel, []), name)
39
        result.map { |v| v[0] }
40 41
      end

42
      # Returns an array of arrays containing the field values.
P
Pratik Naik 已提交
43
      # Order is the same as that returned by +columns+.
44 45
      def select_rows(sql, name = nil)
      end
46
      undef_method :select_rows
47

48
      # Executes the SQL statement in the context of this connection.
A
Aaron Patterson 已提交
49
      def execute(sql, name = nil)
50
      end
51
      undef_method :execute
52

A
Aaron Patterson 已提交
53
      # Executes +sql+ statement in the context of this connection using
54
      # +binds+ as the bind substitutes. +name+ is logged along with
A
Aaron Patterson 已提交
55
      # the executed +sql+ statement.
56
      def exec_query(sql, name = 'SQL', binds = [])
A
Aaron Patterson 已提交
57 58
      end

59
      # Executes insert +sql+ statement in the context of this connection using
60 61 62 63 64 65
      # +binds+ as the bind substitutes. +name+ is the logged along with
      # the executed +sql+ statement.
      def exec_insert(sql, name, binds)
        exec_query(sql, name, binds)
      end

66
      # Executes delete +sql+ statement in the context of this connection using
67 68 69 70 71 72
      # +binds+ as the bind substitutes. +name+ is the logged along with
      # the executed +sql+ statement.
      def exec_delete(sql, name, binds)
        exec_query(sql, name, binds)
      end

73 74 75 76 77 78 79
      # Executes update +sql+ statement in the context of this connection using
      # +binds+ as the bind substitutes. +name+ is the logged along with
      # the executed +sql+ statement.
      def exec_update(sql, name, binds)
        exec_query(sql, name, binds)
      end

80
      # Returns the last auto-generated ID from the affected table.
81 82 83 84 85 86 87
      #
      # +id_value+ will be returned unless the value is nil, in
      # which case the database will attempt to calculate the last inserted
      # id and return that value.
      #
      # If the next id was calculated in advance (as in Oracle), it should be
      # passed in as +id_value+.
88
      def insert(arel, name = nil, pk = nil, id_value = nil, sequence_name = nil, binds = [])
89
        sql, binds = sql_for_insert(to_sql(arel, binds), pk, id_value, sequence_name, binds)
90 91
        value      = exec_insert(sql, name, binds)
        id_value || last_inserted_id(value)
92
      end
93 94

      # Executes the update statement and returns the number of rows affected.
95
      def update(arel, name = nil, binds = [])
96
        exec_update(to_sql(arel, binds), name, binds)
97
      end
98 99

      # Executes the delete statement and returns the number of rows affected.
100
      def delete(arel, name = nil, binds = [])
101
        exec_delete(to_sql(arel, binds), name, binds)
102
      end
103

104 105 106 107 108 109 110 111 112 113 114 115 116
      # Checks whether there is currently no transaction active. This is done
      # by querying the database driver, and does not use the transaction
      # house-keeping information recorded by #increment_open_transactions and
      # friends.
      #
      # Returns true if there is no transaction active, false if there is a
      # transaction active, and nil if this information is unknown.
      #
      # Not all adapters supports transaction state introspection. Currently,
      # only the PostgreSQL adapter supports this.
      def outside_transaction?
        nil
      end
117

118 119 120 121 122 123
      # Returns +true+ when the connection adapter supports prepared statement
      # caching, otherwise returns +false+
      def supports_statement_cache?
        false
      end

124 125 126 127 128 129 130 131 132 133 134
      # Runs the given block in a database transaction, and returns the result
      # of the block.
      #
      # == Nested transactions support
      #
      # Most databases don't support true nested transactions. At the time of
      # writing, the only database that supports true nested transactions that
      # we're aware of, is MS-SQL.
      #
      # In order to get around this problem, #transaction will emulate the effect
      # of nested transactions, by using savepoints:
V
Vijay Dev 已提交
135
      # http://dev.mysql.com/doc/refman/5.0/en/savepoint.html
136 137 138 139 140 141 142 143 144
      # Savepoints are supported by MySQL and PostgreSQL, but not SQLite3.
      #
      # It is safe to call this method if a database transaction is already open,
      # i.e. if #transaction is called within another #transaction block. In case
      # of a nested call, #transaction will behave as follows:
      #
      # - The block will be run without doing anything. All database statements
      #   that happen within the block are effectively appended to the already
      #   open database transaction.
145
      # - However, if +:requires_new+ is set, the block will be wrapped in a
146
      #   database savepoint acting as a sub-transaction.
147 148 149 150 151 152 153 154 155 156 157 158 159 160
      #
      # === Caveats
      #
      # MySQL doesn't support DDL transactions. If you perform a DDL operation,
      # then any created savepoints will be automatically released. For example,
      # if you've created a savepoint, then you execute a CREATE TABLE statement,
      # then the savepoint that was created will be automatically released.
      #
      # This means that, on MySQL, you shouldn't execute DDL operations inside
      # a #transaction call that you know might create a savepoint. Otherwise,
      # #transaction will raise exceptions when it tries to release the
      # already-automatically-released savepoints:
      #
      #   Model.connection.transaction do  # BEGIN
161
      #     Model.connection.transaction(:requires_new => true) do  # CREATE SAVEPOINT active_record_1
162
      #       Model.connection.create_table(...)
163 164
      #       # active_record_1 now automatically released
      #     end  # RELEASE SAVEPOINT active_record_1  <--- BOOM! database error!
165
      #   end
166 167 168
      def transaction(options = {})
        options.assert_valid_keys :requires_new, :joinable

169
        last_transaction_joinable = defined?(@transaction_joinable) ? @transaction_joinable : nil
170 171 172 173 174
        if options.has_key?(:joinable)
          @transaction_joinable = options[:joinable]
        else
          @transaction_joinable = true
        end
175 176
        requires_new = options[:requires_new] || !last_transaction_joinable

177
        transaction_open = false
178 179
        @_current_transaction_records ||= []

180 181
        begin
          if block_given?
182
            if requires_new || open_transactions == 0
183 184
              if open_transactions == 0
                begin_db_transaction
185
              elsif requires_new
186 187
                create_savepoint
              end
J
Jonathan Viney 已提交
188
              increment_open_transactions
189
              transaction_open = true
190
              @_current_transaction_records.push([])
191
            end
192
            yield
193
          end
194
        rescue Exception => database_transaction_rollback
195
          if transaction_open && !outside_transaction?
196
            transaction_open = false
J
Jonathan Viney 已提交
197
            decrement_open_transactions
198 199
            if open_transactions == 0
              rollback_db_transaction
200
              rollback_transaction_records(true)
201 202
            else
              rollback_to_savepoint
203
              rollback_transaction_records(false)
204
            end
205
          end
206
          raise unless database_transaction_rollback.is_a?(ActiveRecord::Rollback)
207
        end
208
      ensure
209 210
        @transaction_joinable = last_transaction_joinable

211 212 213
        if outside_transaction?
          @open_transactions = 0
        elsif transaction_open
J
Jonathan Viney 已提交
214
          decrement_open_transactions
215
          begin
216 217
            if open_transactions == 0
              commit_db_transaction
218
              commit_transaction_records
219 220
            else
              release_savepoint
221 222 223 224 225
              save_point_records = @_current_transaction_records.pop
              unless save_point_records.blank?
                @_current_transaction_records.push([]) if @_current_transaction_records.empty?
                @_current_transaction_records.last.concat(save_point_records)
              end
226
            end
227
          rescue Exception => database_transaction_rollback
228 229
            if open_transactions == 0
              rollback_db_transaction
230
              rollback_transaction_records(true)
231 232
            else
              rollback_to_savepoint
233
              rollback_transaction_records(false)
234
            end
235 236 237
            raise
          end
        end
238
      end
239

240 241 242 243 244 245 246
      # Register a record with the current transaction so that its after_commit and after_rollback callbacks
      # can be called.
      def add_transaction_record(record)
        last_batch = @_current_transaction_records.last
        last_batch << record if last_batch
      end

247 248 249 250 251 252
      # Begins the transaction (and turns off auto-committing).
      def begin_db_transaction()    end

      # Commits the transaction (and turns on auto-committing).
      def commit_db_transaction()   end

253 254
      # Rolls back the transaction (and turns on auto-committing). Must be
      # done if the transaction block raises an exception or returns false.
255 256
      def rollback_db_transaction() end

257 258 259 260 261 262
      def default_sequence_name(table, column)
        nil
      end

      # Set the sequence to the max value of the table's column.
      def reset_sequence!(table, column, sequence = nil)
263
        # Do nothing by default. Implement for PostgreSQL, Oracle, ...
264
      end
265

266
      # Inserts the given fixture into the table. Overridden in adapters that require
267 268
      # something beyond a simple insert (eg. Oracle).
      def insert_fixture(fixture, table_name)
269 270 271 272 273 274 275 276 277
        columns = Hash[columns(table_name).map { |c| [c.name, c] }]

        key_list   = []
        value_list = fixture.map do |name, value|
          key_list << quote_column_name(name)
          quote(value, columns[name])
        end

        execute "INSERT INTO #{quote_table_name(table_name)} (#{key_list.join(', ')}) VALUES (#{value_list.join(', ')})", 'Fixture Insert'
278 279
      end

280 281
      def empty_insert_statement_value
        "VALUES(DEFAULT)"
282 283
      end

284 285 286 287
      def case_sensitive_equality_operator
        "="
      end

288 289 290 291
      def limited_update_conditions(where_sql, quoted_table_name, quoted_primary_key)
        "WHERE #{quoted_primary_key} IN (SELECT #{quoted_primary_key} FROM #{quoted_table_name} #{where_sql})"
      end

292 293
      # Sanitizes the given LIMIT parameter in order to prevent SQL injection.
      #
294
      # The +limit+ may be anything that can evaluate to a string via #to_s. It
295
      # should look like an integer, or a comma-delimited list of integers, or
296
      # an Arel SQL literal.
297
      #
298
      # Returns Integer and Arel::Nodes::SqlLiteral limits as is.
299 300 301
      # Returns the sanitized limit parameter, either as an integer, or as a
      # string which contains a comma-delimited list of integers.
      def sanitize_limit(limit)
302 303 304
        if limit.is_a?(Integer) || limit.is_a?(Arel::Nodes::SqlLiteral)
          limit
        elsif limit.to_s =~ /,/
305 306 307 308 309 310
          Arel.sql limit.to_s.split(',').map{ |i| Integer(i) }.join(',')
        else
          Integer(limit)
        end
      end

311 312 313 314
      # The default strategy for an UPDATE with joins is to use a subquery. This doesn't work
      # on mysql (even when aliasing the tables), but mysql allows using JOIN directly in
      # an UPDATE statement, so in the mysql adapters we redefine this to do that.
      def join_to_update(update, select) #:nodoc:
315 316
        subselect = select.clone
        subselect.projections = [update.key]
317

318
        update.where update.key.in(subselect)
319 320
      end

321 322 323
      protected
        # Returns an array of record hashes with the column names as keys and
        # column values as values.
324
        def select(sql, name = nil, binds = [])
325
        end
326
        undef_method :select
327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342

        # Returns the last auto-generated ID from the affected table.
        def insert_sql(sql, name = nil, pk = nil, id_value = nil, sequence_name = nil)
          execute(sql, name)
          id_value
        end

        # Executes the update statement and returns the number of rows affected.
        def update_sql(sql, name = nil)
          execute(sql, name)
        end

        # Executes the delete statement and returns the number of rows affected.
        def delete_sql(sql, name = nil)
          update_sql(sql, name)
        end
343

344 345
        # Send a rollback message to all records after they have been rolled back. If rollback
        # is false, only rollback records since the last save point.
V
Vijay Dev 已提交
346
        def rollback_transaction_records(rollback)
347 348 349 350 351 352 353 354 355 356 357 358
          if rollback
            records = @_current_transaction_records.flatten
            @_current_transaction_records.clear
          else
            records = @_current_transaction_records.pop
          end

          unless records.blank?
            records.uniq.each do |record|
              begin
                record.rolledback!(rollback)
              rescue Exception => e
359
                record.logger.error(e) if record.respond_to?(:logger) && record.logger
360 361 362 363 364 365
              end
            end
          end
        end

        # Send a commit message to all records after they have been committed.
V
Vijay Dev 已提交
366
        def commit_transaction_records
367 368 369 370 371 372 373
          records = @_current_transaction_records.flatten
          @_current_transaction_records.clear
          unless records.blank?
            records.uniq.each do |record|
              begin
                record.committed!
              rescue Exception => e
374
                record.logger.error(e) if record.respond_to?(:logger) && record.logger
375 376 377 378
              end
            end
          end
        end
379 380 381 382 383 384 385 386 387

      def sql_for_insert(sql, pk, id_value, sequence_name, binds)
        [sql, binds]
      end

      def last_inserted_id(result)
        row = result.rows.first
        row && row.first
      end
388 389
    end
  end
390
end