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

Represents an identifier (column, table, schema, etc.).

Methods

function   new  

Included Modules

QualifyingMethods

Attributes

value  [R]  The identifier to reference

Public Class methods

Set the identifier to the given argument

[Source]

      # File lib/sequel/sql.rb, line 1452
1452:       def initialize(value)
1453:         @value = value
1454:         freeze
1455:       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 1459
1459:       def function(*args)
1460:         Function.new(self, *args)
1461:       end

[Validate]