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 792
792:       def initialize(value)
793:         @value = value
794:       end

[Validate]