Disappointed with ActiveRecord which produces inefficient or buggy DELETE queries, I'm looking for an ability to execute direct SQL query in a safe way, free of SQL injection possibility.
I know there is a safe variant of WHERE clause:
MyObject.joins(:details)
.where('my_objects.my_value = ? and details.my_id = ?',
params[:value], params[:id])
Does the safe variant of execute exist? Something like:
execute(<<eos
DELETE FROM my_objects
USING details
WHERE
my_objects.details_id = details.id
AND my_objects.my_value = ?
AND details.my_id = ?
eos
, params[:value], params[:id])

