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 970 970: def lit(*args) 971: args.empty? ? LiteralString.new(self) : SQL::PlaceholderLiteralString.new(self, args) 972: end