Class: Sequel::SQL::Identifier
- Inherits:
-
GenericExpression
- Object
- Expression
- GenericExpression
- Sequel::SQL::Identifier
- Includes:
- QualifyingMethods
- Defined in:
- lib/sequel/sql.rb
Overview
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.
Instance Attribute Summary collapse
-
#value ⇒ Object
readonly
The table or column to reference.
Instance Method Summary collapse
-
#function(*args) ⇒ Object
Create a Function using this identifier as the functions name, with the given args.
-
#initialize(value) ⇒ Identifier
constructor
Set the value to the given argument.
Methods included from QualifyingMethods
Methods included from Postgres::HStoreOpMethods
Methods included from Postgres::RangeOpMethods
Methods included from Postgres::ArrayOpMethods
Methods included from Postgres::JSONOpMethods
Methods included from Postgres::InetOpMethods
Methods included from Postgres::PGRowOp::ExpressionMethods
Methods included from SubscriptMethods
Methods included from StringMethods
Methods included from PatternMatchMethods
Methods included from OrderMethods
Methods included from NumericMethods
Methods included from ComplexExpressionMethods
#extract, #sql_boolean, #sql_number, #sql_string
Methods included from CastMethods
#cast, #cast_numeric, #cast_string
Methods included from BooleanMethods
Methods included from AliasMethods
Methods inherited from Expression
#==, attr_reader, #eql?, #hash, inherited, #inspect, #lit, #sql_literal
Constructor Details
#initialize(value) ⇒ Identifier
Set the value to the given argument
1409 1410 1411 |
# File 'lib/sequel/sql.rb', line 1409 def initialize(value) @value = value end |
Instance Attribute Details
#value ⇒ Object (readonly)
The table or column to reference
1406 1407 1408 |
# File 'lib/sequel/sql.rb', line 1406 def value @value end |