Represents an identifier (column, table, schema, etc.).
Included modules
Attributes
| value | [R] |
The identifier to reference |
Public Class methods
new(value)
Set the identifier to the given argument
[show source]
# File lib/sequel/sql.rb 1525 def initialize(value) 1526 @value = value 1527 freeze 1528 end
Public Instance methods
function(*args)
Create a Function using this identifier as the functions name, with the given args.
[show source]
# File lib/sequel/sql.rb 1532 def function(*args) 1533 Function.new(self, *args) 1534 end