class Sequel::SQL::Identifier
Represents an identifier (column, table, schema, etc.).
Attributes
value[R]
The identifier to reference
Public Class Methods
new(value)
click to toggle source
Set the identifier to the given argument
# File lib/sequel/sql.rb 1514 def initialize(value) 1515 @value = value 1516 freeze 1517 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 1521 def function(*args) 1522 Function.new(self, *args) 1523 end