Module Sequel::SQL::StringConcatenationMethods
In: lib/sequel_core/sql.rb

This module is included in StringExpression and can be included elsewhere to allow the use of the + operator to represent concatenation of SQL Strings:

  :x.sql_string + :y => # SQL: x || y

Methods

+  

Public Instance methods

[Source]

     # File lib/sequel_core/sql.rb, line 314
314:       def +(ce)
315:         StringExpression.new('||''||', self, ce)
316:       end

[Validate]