class Sequel::SQL::Identifier

  1. lib/sequel/sql.rb
Parent: SQL

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

Public Class

  1. new

Public Instance

  1. value

Included modules

  1. QualifyingMethods

Attributes

value [R]

The table or column to reference

Public Class methods

new (value)

Set the value to the given argument

[show source]
# File lib/sequel/sql.rb, line 1245
def initialize(value)
  @value = value
end