instance method quote

Ruby on Rails 2.2.3

Last seen in v3.0.20

Available in: v2.2.3 v2.3.18 v3.0.20

Signature

quote(value, column = nil)

QUOTING ==================================================

Parameters

value req
column opt = nil
Source
# File activerecord/lib/active_record/connection_adapters/mysql_adapter.rb, line 217
      def quote(value, column = nil)
        if value.kind_of?(String) && column && column.type == :binary && column.class.respond_to?(:string_to_binary)
          s = column.class.string_to_binary(value).unpack("H*")[0]
          "x'#{s}'"
        elsif value.kind_of?(BigDecimal)
          value.to_s("F")
        else
          super
        end
      end

Defined in activerecord/lib/active_record/connection_adapters/mysql_adapter.rb line 217 · View on GitHub · Improve this page · Find usages on GitHub

Defined in ActiveRecord::ConnectionAdapters::MysqlAdapter

Type at least 2 characters to search.

Use the arrow keys to navigate results, Enter to open one, Escape to close.

Keyboard shortcuts

/
Focus search
⌘K / Ctrl-K
Command palette
?
This help
Esc
Close