Flowdock
method

quote_bound_value

Importance_0
v1.0.0 - Show latest stable - 0 notes - Class: ActiveRecord::Base
quote_bound_value(value) protected

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/base.rb, line 1148
        def quote_bound_value(value)
          if (value.respond_to?(:map) && !value.is_a?(String))
            value.map { |v| connection.quote(v) }.join(',')
          else
            connection.quote(value)
          end
        end
Register or log in to add new notes.