Module: Sequel::SQL::StringMethods

Included in:
ComplexExpressionMethods, StringExpression
Defined in:
lib/sequel_core/sql.rb

Overview

This module includes the methods that are defined on objects that can be used in a numeric context in SQL (Symbol, LiteralString, SQL::Function, and SQL::StringExpression).

This defines the like (LIKE) method, used for pattern matching.

Instance Method Summary collapse

Instance Method Details

#ilike(*ces) ⇒ Object

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



288
289
290
# File 'lib/sequel_core/sql.rb', line 288

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

#like(*ces) ⇒ Object

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



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

def like(*ces)
  StringExpression.like(self, *ces)
end