method
_quote
v5.0.0.1 -
Show latest stable
- Class:
ActiveRecord::ConnectionAdapters::SQLite3::Quoting
_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