LiteralString
is used to represent literal SQL expressions. A LiteralString
is
copied verbatim into an SQL statement. Instances of
LiteralString
can be created by calling
String#lit
.
# File lib/sequel/sql.rb, line 1580 def lit(*args) args.empty? ? self : SQL::PlaceholderLiteralString.new(self, args) end
# File lib/sequel/sql.rb, line 1584 def to_sequel_blob SQL::Blob.new(self) end