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

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -