Module: Sequel::SQL::StringConcatenationMethods
- Included in:
- StringExpression
- Defined in:
- lib/sequel/sql.rb
Overview
This module includes the + method. It is included in StringExpression and can be included elsewhere to allow the use of the + operator to represent concatenation of SQL Strings:
Instance Method Summary (collapse)
-
- (Object) +(ce)
Return a StringExpression representing the concatenation of the receiver with the given argument.
Instance Method Details
- (Object) +(ce)
Return a StringExpression representing the concatenation of the receiver with the given argument.
:x.sql_string + :y => # "x" || "y"
491 492 493 |
# File 'lib/sequel/sql.rb', line 491 def +(ce) StringExpression.new(:||', self, ce) end |