Class: Sequel::SQL::Wrapper
- Inherits:
- 
      GenericExpression
      
        - Object
- Expression
- GenericExpression
- Sequel::SQL::Wrapper
 
- Defined in:
- lib/sequel/sql.rb
Overview
A Wrapper is a simple way to wrap an existing object so that it supports the Sequel DSL.
Direct Known Subclasses
Postgres::ArrayOp, Postgres::AutoParameterize::SkipAutoParam, Postgres::AutoParameterizeInArray::TreatStringListAsUntypedArray::ParameterizedUntypedPGArray, Postgres::HStoreOp, Postgres::InetOp, Postgres::JSONBaseOp, Postgres::RangeOp, Sequel::SQLite::JSONBaseOp
Instance Attribute Summary collapse
- 
  
    
      #value  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    The underlying value wrapped by this object. 
Instance Method Summary collapse
- 
  
    
      #initialize(value)  ⇒ Wrapper 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    Set the value wrapped by the object. 
Methods included from IsDistinctFrom::Methods
Methods included from Sequel::SQLite::JSONOpMethods
#sqlite_json_op, #sqlite_jsonb_op
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
#escaped_ilike, #escaped_like, #ilike, #like
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, #clone, #eql?, #hash, inherited, #inspect
Constructor Details
#initialize(value) ⇒ Wrapper
Set the value wrapped by the object.
| 2016 2017 2018 2019 | # File 'lib/sequel/sql.rb', line 2016 def initialize(value) @value = value freeze end | 
Instance Attribute Details
#value ⇒ Object (readonly)
The underlying value wrapped by this object.
| 2013 2014 2015 | # File 'lib/sequel/sql.rb', line 2013 def value @value end |