class Sequel::SQL::Identifier

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.

Attributes

value[R]

The table or column to reference

Public Class Methods

new(value) click to toggle source

Set the value to the given argument

# File lib/sequel/sql.rb, line 1375
def initialize(value)
  @value = value
end

Public Instance Methods

function(*args) click to toggle source

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

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