Class Sequel::SQL::Blob
In: lib/sequel/sql.rb
Parent: ::String

Blob is used to represent binary data in the Ruby environment that is stored as a blob type in the database. Sequel represents binary data as a Blob object because certain database engines require binary data to be escaped.

Methods

Public Instance methods

Returns self

[Source]

     # File lib/sequel/sql.rb, line 450
450:       def to_sequel_blob
451:         self
452:       end

[Validate]