Represents a literal string with placeholders and arguments. This is necessary to ensure delayed literalization of the arguments required for the prepared statement support
Create an object with the given string, placeholder arguments, and parens flag.
# File lib/sequel/sql.rb, line 731 def initialize(str, args, parens=false) @str = str @args = args.is_a?(Array) && args.length == 1 && (v = args.at(0)).is_a?(Hash) ? v : args @parens = parens end
Generated with the Darkfish Rdoc Generator 2.