class Sequel::SQL::Identifier
Represents an identifier (column, table, schema, etc.).
Attributes
The identifier to reference
Public Class Methods
Source
# File lib/sequel/sql.rb 1524 def initialize(value) 1525 @value = value 1526 freeze 1527 end
Set the identifier to the given argument
Public Instance Methods
Source
# File lib/sequel/sql.rb 1531 def function(*args) 1532 Function.new(self, *args) 1533 end
Create a Function
using this identifier as the functions name, with the given args.