method

_quote

rails latest stable - Class: ActiveRecord::ConnectionAdapters::SQLite3::Quoting

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v5.0.0.1) is shown here.

_quote(value)
private

No documentation available.

# File activerecord/lib/active_record/connection_adapters/sqlite3/quoting.rb, line 23
        def _quote(value)
          if value.is_a?(Type::Binary::Data)
            "x'#{value.hex}'"
          else
            super
          end
        end