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 1457
1457:       def initialize(value)
1458:         @value = value
1459:       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 1463
1463:       def function(*args)
1464:         Function.new(self, *args)
1465:       end

[Validate]