Class ActiveRecord::ConnectionAdapters::JdbcAdapter
In: lib/active_record/connection_adapters/jdbc_adapter.rb
Parent: AbstractAdapter

Methods

Included Modules

CompatibilityMethods

Constants

ADAPTER_TYPES = ::JdbcSpec.constants.map{|c| ::JdbcSpec.const_get c }.select{ |c| c.respond_to? :adapter_selector }.map{|c| c.adapter_selector }.inject({}) { |h,val| h[val[0]] = val[1];

Attributes

config  [R] 

Public Class methods

Public Instance methods

we need to do it this way, to allow Rails stupid tests to always work even if we define a new execute method. Instead of mixing in a new execute, an _execute should be mixed in.

[Validate]