sql - What's the best way to sanitize destroy_all - Rails -
i have following controller in rails
:
class foocontroller < applicationcontroller def delete_foo(bar): foo.destroy_all("foo = '#{@bar}'")
is
foo.destroy_all("foo = ?", @bar)
always valid?
destroy_all works on relation. why not do
foo.where(foo: bar).destroy_all
Comments
Post a Comment