Class | Sequel::SQL::Blob |
In: |
lib/sequel/sql.rb
|
Parent: | ::String |
Return a LiteralString with the same content if no args are given, otherwise return a SQL::PlaceholderLiteralString with the current string and the given args.
# File lib/sequel/sql.rb, line 948 948: def lit(*args) 949: args.empty? ? LiteralString.new(self) : SQL::PlaceholderLiteralString.new(self, args) 950: end