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 OrderMethods

#asc, #desc

Methods included from ComplexExpressionMethods

#extract, #sql_boolean, #sql_number, #sql_string

Methods included from CastMethods

#cast, #cast_numeric, #cast_string

Methods included from BooleanMethods

#~

Methods included from AliasMethods

#as

Methods inherited from Expression

#==, attr_reader, comparison_attrs, #eql?, #hash, #inspect, #lit, #sql_literal

Constructor Details

#initialize(value) ⇒ Identifier

Set the value to the given argument



747
748
749
# File 'lib/sequel/sql.rb', line 747

def initialize(value)
  @value = value
end

Instance Attribute Details

#valueObject (readonly)

The table or column to reference



744
745
746
# File 'lib/sequel/sql.rb', line 744

def value
  @value
end