Class Sequel::SQL::Identifier
In: lib/sequel/sql.rb
Parent: GenericExpression

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.

Methods

new  

Included Modules

QualifyingMethods

Attributes

value  [R]  The table or column to reference

Public Class methods

Set the value to the given argument

[Source]

     # File lib/sequel/sql.rb, line 755
755:       def initialize(value)
756:         @value = value
757:       end

[Validate]