Als je echt onbewerkte SQL moet schrijven, kun je quote
gebruiken om het te ontsmetten:
conn = ActiveRecord::Base.connection
name = conn.quote("John O'Neil")
title = conn.quote(nil)
query = "INSERT INTO users (name,title) VALUES (#{name}, #{title})"
conn.execute(query)