Module: ActiveRecord::ConnectionAdapters::Jdbc::ArelSupport

Included in:
ActiveRecord::ConnectionAdapters::JdbcAdapter
Defined in:
lib/arjdbc/jdbc/arel_support.rb

Overview

AREL support for the JDBC adapter.

Defined Under Namespace

Modules: ClassMethods

Instance Method Summary collapse

Instance Method Details

#unprepared_visitorObject



117
118
119
120
121
122
# File 'lib/arjdbc/jdbc/arel_support.rb', line 117

def unprepared_visitor
  # super does self.class::BindSubstitution.new self
  # we do not require the BindSubstitution constant - auto-generated :
  visitor = self.class.resolve_visitor_type(config)
  bind_substitution(visitor).new(self)
end