Method: Sequel::SQL::StringMethods#ilike

Defined in:
lib/sequel/sql.rb

#ilike(*ces) ⇒ Object

Create a BooleanExpression case insensitive pattern match of self with the given patterns. See StringExpression.like.



294
295
296
# File 'lib/sequel/sql.rb', line 294

def ilike(*ces)
  StringExpression.like(self, *(ces << {:case_insensitive=>true}))
end