A Wrapper is a simple way to wrap an existing object so that it supports the Sequel DSL.
Set the value wrapped by the object.
[Source]
# File lib/sequel/sql.rb, line 1581 1581: def initialize(value) 1582: @value = value 1583: end
[Validate]