class method ActiveRecord.escape
ActiveRecord.escape(value[,suppress_quotes = false]) → Number | String
Escapes a given argument for use in a SQL string. By default the argument passed will also be enclosed in quotes.
ActiveRecord.escape(5) == 5 ActiveRecord.escape('tes"t') == '"tes"t"';


