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

function   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 1377
1377:       def initialize(value)
1378:         @value = value
1379:       end

Public Instance methods

Create a Function using this identifier as the functions name, with the given args.

[Source]

      # File lib/sequel/sql.rb, line 1383
1383:       def function(*args)
1384:         Function.new(self, *args)
1385:       end

[Validate]