String that holds an array of parameters
Add a new parameter to this query, which adds the parameter to the array of parameters, and an SQL placeholder to the query itself.
# File lib/sequel/extensions/pg_auto_parameterize.rb, line 78 def add_arg(s, type=nil) @args ||= [] @args << s self << PLACEHOLDER << @args.length.to_s self << CAST << type.to_s if type end
Generated with the Darkfish Rdoc Generator 2.