Flowdock
method

sanitize_sql_for_conditions

Importance_1
v2.0.3 - Show latest stable - 0 notes - Class: ActiveRecord::Base
sanitize_sql_for_conditions(condition) protected

Accepts an array, hash, or string of sql conditions and sanitizes them into a valid SQL fragment for a WHERE clause.

  ["name='%s' and group_id='%s'", "foo'bar", 4]  returns  "name='foo''bar' and group_id='4'"
  { :name => "foo'bar", :group_id => 4 }  returns "name='foo''bar' and group_id='4'"
  "name='foo''bar' and group_id='4'" returns "name='foo''bar' and group_id='4'"
Show source
Register or log in to add new notes.