I'd like to do a query using the Sequel's Models object. I'd like the pattern to match certain variables value like so:
Models::Show.grep(:name, %w'#{var1} #{var2}')
But unfortunately, the Models.grep instance method seems not to be working this way. It query as following:
SELECT * FROM "shows" 
WHERE (("name" LIKE '#{titre_fr}' ESCAPE '\') 
OR ("name" LIKE ' {titre_en}' ESCAPE '\'))
Is there a way to make the function work with variables ?
 
     
     
    