Class: Sequel::SQL::Identifier

Inherits:
GenericExpression show all
Includes:
QualifyingMethods
Defined in:
lib/sequel/sql.rb

Overview

Represents an identifier (column or table). Can be used to specify a Symbol with multiple underscores should not be split, or for creating an identifier without using a symbol.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from QualifyingMethods

#qualify

Methods included from SubscriptMethods

#sql_subscript

Methods included from StringMethods

#ilike, #like

Methods included from BooleanMethods

#~

Methods included from ComplexExpressionMethods

#extract, #sql_boolean, #sql_number, #sql_string

Methods included from OrderMethods

#asc, #desc

Methods included from CastMethods

#cast, #cast_numeric, #cast_string

Methods included from AliasMethods

#as

Methods inherited from Expression

#lit

Constructor Details

#initialize(value) ⇒ Identifier

Set the value to the given argument



570
571
572
# File 'lib/sequel/sql.rb', line 570

def initialize(value)
  @value = value
end

Instance Attribute Details

#valueObject (readonly)

The table and column to reference



567
568
569
# File 'lib/sequel/sql.rb', line 567

def value
  @value
end