Class Sequel::SQL::VirtualRow::Wrapper
In: lib/sequel/sql.rb
Parent: GenericExpression

A Wrapper is a simple way to wrap an existing object so that it supports the Sequel DSL.

Methods

new  

Attributes

value  [R]  The underlying value wrapped by this object.

Public Class methods

Set the value wrapped by the object.

[Source]

      # File lib/sequel/sql.rb, line 1912
1912:       def initialize(value)
1913:         @value = value
1914:       end

[Validate]